MCPcopy Create free account
hub / github.com/apache/tomcat / popNode

Method popNode

java/org/apache/el/parser/JJTELParserState.java:54–59  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

52 * Returns the node on the top of the stack, and remove it from the stack.
53 */
54 public Node popNode() {
55 if (--sp < mk) {
56 mk = marks.remove(marks.size() - 1);
57 }
58 return nodes.remove(nodes.size() - 1);
59 }
60
61 /* Returns the node currently on the top of the stack. */
62 public Node peekNode() {

Callers 15

clearNodeScopeMethod · 0.95
closeNodeScopeMethod · 0.95
CompositeExpressionMethod · 0.80
DeferredExpressionMethod · 0.80
DynamicExpressionMethod · 0.80
SemicolonMethod · 0.80
AssignmentMethod · 0.80
LambdaExpressionMethod · 0.80
LambdaParametersMethod · 0.80
ChoiceMethod · 0.80
OrMethod · 0.80

Calls 2

removeMethod · 0.65
sizeMethod · 0.45

Tested by

no test coverage detected