Constructs a new frame with the given size. @param nLocals the maximum number of local variables of the frame. @param nStack the maximum stack size of the frame. @return the created frame.
(final int nLocals, final int nStack)
| 397 | * @return the created frame. |
| 398 | */ |
| 399 | protected StackFrame newFrame(final int nLocals, final int nStack) { |
| 400 | return new StackFrame(nLocals, nStack); |
| 401 | } |
| 402 | |
| 403 | /** |
| 404 | * Constructs a new frame that is identical to the given frame. |