Home
last modified time | relevance | path

Searched refs:propertyIsEnumerable (Results 1 – 25 of 109) sorted by relevance

12345

/third_party/jerryscript/tests/jerry/
Dobject-prototype-propertyisenumerable.js19 obj.propertyIsEnumerable({ toString: function() { throw new ReferenceError ("foo"); } });
30 obj1.propertyIsEnumerable("fail");
41 assert (obj.propertyIsEnumerable('prop') === true);
42 assert (array.propertyIsEnumerable(0) === true);
44 assert (obj.propertyIsEnumerable('length') === false);
45 assert (array.propertyIsEnumerable('length') === false);
46 assert (Math.propertyIsEnumerable('random') === false);
52 assert (obj.propertyIsEnumerable('prop1') === true);
53 assert (obj.propertyIsEnumerable('prop2') === false);
54 assert (obj.propertyIsEnumerable('prop3') === false);
[all …]
/third_party/node/test/parallel/
Dtest-stream-base-prototype-accessors-enumerability.js17 assert.strictEqual(TTY.prototype.propertyIsEnumerable('bytesRead'), false);
18 assert.strictEqual(TTY.prototype.propertyIsEnumerable('fd'), false);
20 TTY.prototype.propertyIsEnumerable('_externalStream'), false);
Dtest-domain-timer.js6 const isEnumerable = Function.call.bind(Object.prototype.propertyIsEnumerable);
/third_party/typescript/tests/baselines/reference/
Dlibrary_ObjectPrototypeProperties.types53 Object.prototype.propertyIsEnumerable("string");
54 >Object.prototype.propertyIsEnumerable("string") : boolean
55 >Object.prototype.propertyIsEnumerable : (v: PropertyKey) => boolean
59 >propertyIsEnumerable : (v: PropertyKey) => boolean
Dlibrary_ObjectPrototypeProperties.symbols47 Object.prototype.propertyIsEnumerable("string");
48 >Object.prototype.propertyIsEnumerable : Symbol(Object.propertyIsEnumerable, Decl(lib.es5.d.ts, --,…
52 >propertyIsEnumerable : Symbol(Object.propertyIsEnumerable, Decl(lib.es5.d.ts, --, --))
Dlibrary_ObjectPrototypeProperties.js10 Object.prototype.propertyIsEnumerable("string");
21 Object.prototype.propertyIsEnumerable("string");
DobjectBindingPattern_restElementWithPropertyName.js12 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
DdestructuringAssignmentWithStrictNullChecks.js13 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
DobjectTypeWithStringIndexerHidingObjectIndexer.errors.txt4 …StringIndexerHidingObjectIndexer.ts(5,5): error TS2411: Property 'propertyIsEnumerable' of type '(…
23 !!! error TS2411: Property 'propertyIsEnumerable' of type '(v: PropertyKey) => boolean' is not assi…
DrestElementWithNumberPropertyName.js12 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
DrestPropertyWithBindingPattern.js14 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
DobjectRestCatchES5.js12 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
DdestructuringObjectBindingPatternAndAssignment5.js16 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
/third_party/jerryscript/tests/jerry-test-suite/15/15.07/15.07.03/15.07.03.05/
D15.07.03.05-007.js15 assert(!Number.propertyIsEnumerable('NEGATIVE_INFINITY'));
/third_party/jerryscript/tests/jerry-test-suite/15/15.07/15.07.03/15.07.03.06/
D15.07.03.06-007.js15 assert(!Number.propertyIsEnumerable('POSITIVE_INFINITY'));
/third_party/jerryscript/tests/jerry-test-suite/15/15.07/15.07.03/15.07.03.01/
D15.07.03.01-006.js15 assert(!Number.propertyIsEnumerable('prototype'));
/third_party/jerryscript/tests/jerry/es2015/
Dregression-test-issue-1763.js15 new Promise(Math.max.propertyIsEnumerable.toString).then()
Dregression-test-issue-3861.js21 propertyIsEnumerable(sharedProto)
/third_party/jerryscript/tests/jerry-test-suite/15/15.02/15.02.04/15.02.04.07/
D15.02.04.07-001.js19 assert(!object.propertyIsEnumerable('prop2'));
D15.02.04.07-003.js26 assert(!object.propertyIsEnumerable('prop'));
D15.02.04.07-002.js26 assert(object.propertyIsEnumerable('prop'));
/third_party/jerryscript/tests/jerry-test-suite/15/15.03/15.03.03/15.03.03.01/
D15.03.03.01-002.js15 if (Function.propertyIsEnumerable('prototype'))
/third_party/typescript/tests/cases/compiler/
Dlibrary_ObjectPrototypeProperties.ts9 Object.prototype.propertyIsEnumerable("string");
/third_party/jerryscript/tests/jerry-test-suite/15/15.03/15.03.04/15.03.04.02/
D15.03.04.02-003.js16 assert(!Function.prototype.toString.propertyIsEnumerable('length'));
/third_party/node/deps/npm/node_modules/has-symbols/
Dshams.js34 if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }

12345