ireturn = 172 |
Stack: ..., value => [empty]value must be an integer. The value value is pushed onto the stack of the previous execution environment. Any other values on the operand stack are discarded. The interpreter then returns control to its caller.
lreturn = 173 |
Stack: ..., valuevalue must be a long integer. The value value is pushed onto the stack of the previous execution environment. Any other values on the operand stack are discarded. The interpreter then returns control to its caller.-word1
, value-word2
=> [empty]
freturn = 174 |
Stack: ..., value => [empty]value must be a single-precision floating point number. The value value is pushed onto the stack of the previous execution environment. Any other values on the operand stack are discarded. The interpreter then returns control to its caller.
dreturn = 175 |
Stack: ..., valuevalue must be a double-precision floating point number. The value value is pushed onto the stack of the previous execution environment. Any other values on the operand stack are discarded. The interpreter then returns control to its caller.-word1
, value-word2
=> [empty]
areturn = 176 |
Stack: ..., value => [empty]value must be a reference to an object. The value value is pushed onto the stack of the previous execution environment. Any other values on the operand stack are discarded. The interpreter then returns control to its caller.
return = 177 |
Stack: ... => [empty]All values on the operand stack are discarded. The interpreter then returns control to its caller.
breakpoint = 202 |
Stack: no change