ThrowException .-.
This commit is contained in:
parent
45d0aa66e5
commit
6b03cab14d
4 changed files with 14 additions and 5 deletions
|
@ -2278,6 +2278,13 @@ impl JVM {
|
|||
}
|
||||
}
|
||||
|
||||
Instruction::ThrowException() => {
|
||||
let exception = wrap_stackframe_error(class, method, frame.operand_stack.pop_reference(0))?;
|
||||
if exception == ObjectReference::NULL {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Instruction::XorInt() => {
|
||||
let value_1 = wrap_stackframe_error(class, method, frame.operand_stack.pop_int(0))?;
|
||||
let value_2 = wrap_stackframe_error(class, method, frame.operand_stack.pop_int(0))?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue