MCPcopy Create free account
hub / github.com/dynjs/dynjs / containsKey

Method containsKey

src/main/java/org/dynjs/runtime/DynObject.java:536–540  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

534 }
535
536 @Override
537 public boolean containsKey(Object key) {
538 Object desc = getProperty(null, key.toString(), false);
539 return (desc != Types.UNDEFINED);
540 }
541
542 @Override
543 public boolean containsValue(Object value) {

Callers 4

deleteMethod · 0.80
hasBindingMethod · 0.80
setMutableBindingMethod · 0.80
callMethod · 0.80

Calls 2

getPropertyMethod · 0.95
toStringMethod · 0.45

Tested by

no test coverage detected