Get the parent namespace' This reference or this namespace' This reference if we are the top.
( Interpreter declaringInterpreter )
| 423 | reference if we are the top. |
| 424 | */ |
| 425 | public This getSuper( Interpreter declaringInterpreter ) |
| 426 | { |
| 427 | if ( parent != null ) |
| 428 | return parent.getThis( declaringInterpreter ); |
| 429 | else |
| 430 | return getThis( declaringInterpreter ); |
| 431 | } |
| 432 | |
| 433 | /** |
| 434 | Get the top level namespace or this namespace if we are the top. |
no test coverage detected