MCPcopy Create free account
hub / github.com/beanshell/beanshell / eval

Method eval

src/bsh/BSHFormalParameter.java:55–64  ·  view source on GitHub ↗

Evaluate the type.

( CallStack callstack, Interpreter interpreter)

Source from the content-addressed store, hash-verified

53 Evaluate the type.
54 */
55 public Object eval( CallStack callstack, Interpreter interpreter)
56 throws EvalError
57 {
58 if ( jjtGetNumChildren() > 0 )
59 type = ((BSHType)jjtGetChild(0)).getType( callstack, interpreter );
60 else
61 type = UNTYPED;
62
63 return type;
64 }
65}
66

Callers 2

evalMethod · 0.95
evalMethod · 0.95

Calls 3

jjtGetNumChildrenMethod · 0.65
jjtGetChildMethod · 0.65
getTypeMethod · 0.45

Tested by

no test coverage detected