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

Method popNode

src/bsh/JJTParserState.java:75–80  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

73 /* Returns the node on the top of the stack, and remove it from the
74 stack. */
75 Node popNode() {
76 if (--sp < mk) {
77 mk = ((Integer)marks.pop()).intValue();
78 }
79 return (Node)nodes.pop();
80 }
81
82 /* Returns the node currently on the top of the stack. */
83 Node peekNode() {

Callers 2

clearNodeScopeMethod · 0.95
closeNodeScopeMethod · 0.95

Calls 2

intValueMethod · 0.80
popMethod · 0.80

Tested by

no test coverage detected