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

Method get

src/bsh/CallStack.java:80–86  ·  view source on GitHub ↗

zero based.

(int depth)

Source from the content-addressed store, hash-verified

78 zero based.
79 */
80 public NameSpace get(int depth) {
81 int size = stack.size();
82 if ( depth >= size )
83 return NameSpace.JAVACODE;
84 else
85 return stack.get(size-1-depth);
86 }
87
88 /**
89 This is kind of crazy, but used by the setNameSpace command.

Callers

nothing calls this directly

Calls 2

getMethod · 0.65
sizeMethod · 0.45

Tested by

no test coverage detected