Generates the instruction to push the given value on the stack. @param value the value to be pushed on the stack.
(final boolean value)
| 315 | * @param value the value to be pushed on the stack. |
| 316 | */ |
| 317 | public void push(final boolean value) { |
| 318 | push(value ? 1 : 0); |
| 319 | } |
| 320 | |
| 321 | /** |
| 322 | * Generates the instruction to push the given value on the stack. |
no test coverage detected