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

Method getOwnPropertyNames

src/main/java/org/dynjs/runtime/DynObject.java:459–466  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

457 }
458
459 @Override
460 public NameEnumerator getOwnPropertyNames() {
461 ArrayList<String> names = new ArrayList<String>();
462 for (String name : this.properties.keySet()) {
463 names.add(name);
464 }
465 return new NameEnumerator(names);
466 }
467
468 @Override
469 public NameEnumerator getOwnEnumerablePropertyNames() {

Callers

nothing calls this directly

Calls 2

keySetMethod · 0.80
addMethod · 0.45

Tested by

no test coverage detected