Resolve name to an object through this namespace.
( String name, Interpreter interpreter )
| 225 | Resolve name to an object through this namespace. |
| 226 | */ |
| 227 | public Object get( String name, Interpreter interpreter ) |
| 228 | throws UtilEvalError |
| 229 | { |
| 230 | CallStack callstack = new CallStack( this ); |
| 231 | return getNameResolver( name ).toObject( callstack, interpreter ); |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | Set the variable through this namespace. |
nothing calls this directly
no test coverage detected