( Interpreter declaringInterpreter )
| 474 | interpreter, so we'd be sure to get the top interpreter. |
| 475 | */ |
| 476 | public This getThis( Interpreter declaringInterpreter ) |
| 477 | { |
| 478 | if ( thisReference == null ) |
| 479 | thisReference = This.getThis( this, declaringInterpreter ); |
| 480 | |
| 481 | return thisReference; |
| 482 | } |
| 483 | |
| 484 | public BshClassManager getClassManager() |
| 485 | { |
no test coverage detected