MCPcopy Index your code
hub / github.com/beanshell/beanshell / get

Method get

src/bsh/Interpreter.java:852–859  ·  view source on GitHub ↗

Get the value of the name. name may be any value. e.g. a variable or field

( String name )

Source from the content-addressed store, hash-verified

850 name may be any value. e.g. a variable or field
851 */
852 public Object get( String name ) throws EvalError {
853 try {
854 Object ret = globalNameSpace.get( name, this );
855 return Primitive.unwrap( ret );
856 } catch ( UtilEvalError e ) {
857 throw e.toEvalError( SimpleNode.JAVACODE, new CallStack() );
858 }
859 }
860
861 /**
862 Unchecked get for internal use

Callers 4

getuMethod · 0.95
jdownloader_test_caseMethod · 0.95
runTestMethod · 0.95
mainMethod · 0.95

Calls 3

unwrapMethod · 0.95
getMethod · 0.65
toEvalErrorMethod · 0.45

Tested by 3

jdownloader_test_caseMethod · 0.76
runTestMethod · 0.76
mainMethod · 0.76