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

Method lookupProperty

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

Source from the content-addressed store, hash-verified

467 }
468
469 private PropListItem lookupProperty(int propType) {
470 PropListItem x = propListHead;
471 while (x != null && propType != x.type) {
472 x = x.next;
473 }
474 return x;
475 }
476
477 private PropListItem ensureProperty(int propType) {
478 PropListItem item = lookupProperty(propType);

Callers 4

ensurePropertyMethod · 0.95
getPropMethod · 0.95
getIntPropMethod · 0.95
getExistingIntPropMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected