Searched refs:propertyIsEnumerable (Results 1 – 25 of 109) sorted by relevance
12345
/third_party/jerryscript/tests/jerry/ |
D | object-prototype-propertyisenumerable.js | 19 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/ |
D | test-stream-base-prototype-accessors-enumerability.js | 17 assert.strictEqual(TTY.prototype.propertyIsEnumerable('bytesRead'), false); 18 assert.strictEqual(TTY.prototype.propertyIsEnumerable('fd'), false); 20 TTY.prototype.propertyIsEnumerable('_externalStream'), false);
|
D | test-domain-timer.js | 6 const isEnumerable = Function.call.bind(Object.prototype.propertyIsEnumerable);
|
/third_party/typescript/tests/baselines/reference/ |
D | library_ObjectPrototypeProperties.types | 53 Object.prototype.propertyIsEnumerable("string"); 54 >Object.prototype.propertyIsEnumerable("string") : boolean 55 >Object.prototype.propertyIsEnumerable : (v: PropertyKey) => boolean 59 >propertyIsEnumerable : (v: PropertyKey) => boolean
|
D | library_ObjectPrototypeProperties.symbols | 47 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, --, --))
|
D | library_ObjectPrototypeProperties.js | 10 Object.prototype.propertyIsEnumerable("string"); 21 Object.prototype.propertyIsEnumerable("string");
|
D | objectBindingPattern_restElementWithPropertyName.js | 12 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
D | destructuringAssignmentWithStrictNullChecks.js | 13 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
D | objectTypeWithStringIndexerHidingObjectIndexer.errors.txt | 4 …StringIndexerHidingObjectIndexer.ts(5,5): error TS2411: Property 'propertyIsEnumerable' of type '(… 23 !!! error TS2411: Property 'propertyIsEnumerable' of type '(v: PropertyKey) => boolean' is not assi…
|
D | restElementWithNumberPropertyName.js | 12 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
D | restPropertyWithBindingPattern.js | 14 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
D | objectRestCatchES5.js | 12 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
D | destructuringObjectBindingPatternAndAssignment5.js | 16 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/ |
D | 15.07.03.05-007.js | 15 assert(!Number.propertyIsEnumerable('NEGATIVE_INFINITY'));
|
/third_party/jerryscript/tests/jerry-test-suite/15/15.07/15.07.03/15.07.03.06/ |
D | 15.07.03.06-007.js | 15 assert(!Number.propertyIsEnumerable('POSITIVE_INFINITY'));
|
/third_party/jerryscript/tests/jerry-test-suite/15/15.07/15.07.03/15.07.03.01/ |
D | 15.07.03.01-006.js | 15 assert(!Number.propertyIsEnumerable('prototype'));
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | regression-test-issue-1763.js | 15 new Promise(Math.max.propertyIsEnumerable.toString).then()
|
D | regression-test-issue-3861.js | 21 propertyIsEnumerable(sharedProto)
|
/third_party/jerryscript/tests/jerry-test-suite/15/15.02/15.02.04/15.02.04.07/ |
D | 15.02.04.07-001.js | 19 assert(!object.propertyIsEnumerable('prop2'));
|
D | 15.02.04.07-003.js | 26 assert(!object.propertyIsEnumerable('prop'));
|
D | 15.02.04.07-002.js | 26 assert(object.propertyIsEnumerable('prop'));
|
/third_party/jerryscript/tests/jerry-test-suite/15/15.03/15.03.03/15.03.03.01/ |
D | 15.03.03.01-002.js | 15 if (Function.propertyIsEnumerable('prototype'))
|
/third_party/typescript/tests/cases/compiler/ |
D | library_ObjectPrototypeProperties.ts | 9 Object.prototype.propertyIsEnumerable("string");
|
/third_party/jerryscript/tests/jerry-test-suite/15/15.03/15.03.04/15.03.04.02/ |
D | 15.03.04.02-003.js | 16 assert(!Function.prototype.toString.propertyIsEnumerable('length'));
|
/third_party/node/deps/npm/node_modules/has-symbols/ |
D | shams.js | 34 if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }
|
12345