getOwnPropertyNames method

List<String> getOwnPropertyNames()
override

Implementation

List<String> getOwnPropertyNames() {
  assert(!_disposed);
  script._arguments[0].setValue(this);
  return script._action(JS_ACTION_PROPERTY_NAMES, 1, block: (results, length) {
    String ret = results[0].get(script);
    return ret.split(",");
  });
}