MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / containsKey

Method containsKey

src/main/java/fieldnashorn/Nashorn.java:275–283  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

273 Object mmm = mm.get(key);
274 return mmm;
275 }
276 return null;
277
278 }
279
280 @Override
281 public boolean containsKey(Object key) {
282 ScriptObjectMirror som = (ScriptObjectMirror) super.get("nashorn.global");
283 if (super.containsKey(key)) return true;
284 if (som != null) {
285 return som.containsKey(key);
286 }

Callers 15

asMap_isPropertyMethod · 0.45
asMap_getMethod · 0.45
asMap_isPropertyMethod · 0.45
MarkingMenusMethod · 0.45
asMap_getMethod · 0.45
DrawingMethod · 0.45
call_runnableMethod · 0.45
callMethod · 0.45
callFunctionMethod · 0.45
loadedMethod · 0.45
ThreadSyncFeedbackMethod · 0.45
ThreadSync2FeedbackMethod · 0.45

Calls 1

getMethod · 0.65

Tested by

no test coverage detected