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

Method getExistingIntProp

rhino/src/main/java/org/mozilla/javascript/Node.java:523–529  ·  view source on GitHub ↗
(int propType)

Source from the content-addressed store, hash-verified

521 }
522
523 public int getExistingIntProp(int propType) {
524 PropListItem item = lookupProperty(propType);
525 if (item == null) {
526 Kit.codeBug();
527 }
528 return item.intValue;
529 }
530
531 public void putProp(int propType, Object prop) {
532 if (prop == null) {

Callers 12

toStringTreeHelperMethod · 0.95
getLocalBlockRefMethod · 0.95
getLocalBlockRegisterMethod · 0.95
inferNameIfMissingMethod · 0.80
visitStatementMethod · 0.80
visitExpressionMethod · 0.80
visitIncDecMethod · 0.80
visitTemplateLiteralMethod · 0.80
generateStatementMethod · 0.80
generateExpressionMethod · 0.80
visitTemplateLiteralMethod · 0.80
visitIncDecMethod · 0.80

Calls 2

lookupPropertyMethod · 0.95
codeBugMethod · 0.95

Tested by

no test coverage detected