MCPcopy Create free account
hub / github.com/mozilla/rhino / getIntProp

Method getIntProp

rhino/src/main/java/org/mozilla/javascript/Node.java:515–521  ·  view source on GitHub ↗
(int propType, int defaultValue)

Source from the content-addressed store, hash-verified

513 }
514
515 public int getIntProp(int propType, int defaultValue) {
516 PropListItem item = lookupProperty(propType);
517 if (item == null) {
518 return defaultValue;
519 }
520 return item.intValue;
521 }
522
523 public int getExistingIntProp(int propType) {
524 PropListItem item = lookupProperty(propType);

Callers 15

labelIdMethod · 0.95
endCheckLoopMethod · 0.95
endCheckLabelMethod · 0.95
transformArrayLiteralMethod · 0.95
transformFunctionCallMethod · 0.95
generateExpressionMethod · 0.95
visitOptimizedCallMethod · 0.95
visitIncDecMethod · 0.95
createUnaryMethod · 0.45

Calls 1

lookupPropertyMethod · 0.95

Tested by

no test coverage detected