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

Method putProp

rhino/src/main/java/org/mozilla/javascript/Node.java:531–538  ·  view source on GitHub ↗
(int propType, Object prop)

Source from the content-addressed store, hash-verified

529 }
530
531 public void putProp(int propType, Object prop) {
532 if (prop == null) {
533 removeProp(propType);
534 } else {
535 PropListItem item = ensureProperty(propType);
536 item.objectValue = prop;
537 }
538 }
539
540 public void putIntProp(int propType, int prop) {
541 PropListItem item = ensureProperty(propType);

Callers 15

visitLetMethod · 0.95
setJsDocNodeMethod · 0.95
transformArrayLiteralMethod · 0.95
transformParenExprMethod · 0.95
createForInMethod · 0.95
createTryCatchFinallyMethod · 0.95
createPropertyGetMethod · 0.95
createUseLocalMethod · 0.95
destructuringObjectMethod · 0.95
buildBlocksMethod · 0.95
parseFunctionBodyMethod · 0.80

Calls 2

removePropMethod · 0.95
ensurePropertyMethod · 0.95

Tested by

no test coverage detected