/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/decorators/ |
D | test-ts-decorators-13.ts | 18 property.enumerable=true 31 print(Object.getOwnPropertyDescriptor(C.prototype,"a1")!.enumerable) 32 print(Object.getOwnPropertyDescriptor(C.prototype,"a2")!.enumerable) 33 print(Object.getOwnPropertyDescriptor(C,"b1")!.enumerable) 34 print(Object.getOwnPropertyDescriptor(C,"b2")!.enumerable)
|
D | test-ts-decorators-15.ts | 17 function enumerable(value: any) { function 19 descriptor.enumerable = value("xxx"); 30 @enumerable(function (p: string) { return false })
|
/arkcompiler/ets_runtime/test/moduletest/forin/ |
D | forin.js | 25 enumerable:true, property 36 enumerable:true, property 44 enumerable:false, property 52 enumerable:false, property 60 enumerable:true, property 74 enumerable:false, property
|
/arkcompiler/ets_runtime/test/moduletest/moduleUseCjs/ |
D | CjsDictionaryMode.js | 23 enumerable: true, property
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | parserOptionalTypeMembers1.ts | 24 enumerable?: boolean;
|
/arkcompiler/ets_runtime/test/moduletest/globalaccessor/ |
D | globalaccessor.js | 28 enumerable:true, property
|
/arkcompiler/ets_runtime/test/moduletest/objectentries/ |
D | objectentries.js | 36 enumerable: false property
|
/arkcompiler/ets_runtime/test/moduletest/objoperate/ |
D | objoperate.js | 46 Object.defineProperty(this, "detailed", {configurable:true, enumerable:true, get:f1, set:f2}); property
|
/arkcompiler/ets_runtime/test/moduletest/jsonstringifier/ |
D | jsonstringifier.js | 26 Object.defineProperty(this, "ownKeys", { configurable: true, enumerable: true, value: a }); property
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | global_dictionary_test.cpp | 267 bool enumerable; in HWTEST_F_L0() local 272 enumerable = true; in HWTEST_F_L0() 274 enumerable = false; in HWTEST_F_L0() 276 metaData.SetEnumerable(enumerable); in HWTEST_F_L0()
|
/arkcompiler/toolchain/tooling/test/ |
D | debugger_types_test.cpp | 670 "name":10,"configurable":true,"enumerable":true,"value":10}})"; in HWTEST_F_L0() 676 "name":["name85"],"configurable":true,"enumerable":true,"value":10}})"; in HWTEST_F_L0() 682 "name":"name85","configurable":10,"enumerable":true}})"; in HWTEST_F_L0() 688 "name":"name85","configurable":"true","enumerable":true}})"; in HWTEST_F_L0() 694 "name":"name85","configurable":true,"enumerable":10}})"; in HWTEST_F_L0() 700 "name":"name85","configurable":true,"enumerable":"true"}})"; in HWTEST_F_L0() 706 "name":"name85","configurable":true,"enumerable":true,"value":10}})"; in HWTEST_F_L0() 712 "name":"name85","configurable":true,"enumerable":true,"value":{"ee":"11"}}})"; in HWTEST_F_L0() 718 "name":"name85","configurable":true,"enumerable":true,"value":{"type":")" + in HWTEST_F_L0() 731 "name":"name85","configurable":true,"enumerable":true,"writable":98}})"; in HWTEST_F_L0() [all …]
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
D | cocos_worker_test.js | 186 enumerable: !0, property 407 enumerable: !0, property 703 enumerable: !0, property 710 enumerable: !0, property 717 enumerable: !0, property 724 enumerable: !0, property 731 enumerable: !0, property 738 enumerable: !0, property 745 enumerable: !0, property 752 enumerable: !0, property [all …]
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs-inl.h | 569 bool enumerable = !(obj->IsClassPrototype() || obj->IsClassConstructor()); in RuntimeStOwnByValue() local 571 PropertyDescriptor desc(thread, value, true, enumerable, true); in RuntimeStOwnByValue() 678 bool enumerable = !(obj->IsClassPrototype() || obj->IsClassConstructor()); in RuntimeStOwnByIndex() local 680 PropertyDescriptor desc(thread, value, true, enumerable, true); in RuntimeStOwnByIndex() 981 bool enumerable = !(obj->IsClassPrototype() || obj->IsClassConstructor()); in RuntimeStOwnByValueWithNameSet() local 983 PropertyDescriptor desc(thread, value, true, enumerable, true); in RuntimeStOwnByValueWithNameSet() 1008 bool enumerable = !(obj->IsClassPrototype() || obj->IsClassConstructor()); in RuntimeStOwnByName() local 1010 PropertyDescriptor desc(thread, value, true, enumerable, true); in RuntimeStOwnByName() 1028 bool enumerable = !(objHandle->IsClassPrototype() || objHandle->IsClassConstructor()); in RuntimeStOwnByNameWithNameSet() local 1030 PropertyDescriptor desc(thread, valueHandle, true, enumerable, true); in RuntimeStOwnByNameWithNameSet() [all …]
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
D | builtins_reflect_test.cpp | 192 JSHandle<JSTaggedValue> enumerable(thread, JSTaggedValue::False()); in HWTEST_F_L0() local 193 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), enumerableKey, enumerable); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_object.cpp | 1824 JSHandle<JSTaggedValue> enumerable(thread, JSTaggedValue(desc.IsEnumerable())); in FromPropertyDescriptor() local 1825 … [[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, enumerableStr, enumerable); in FromPropertyDescriptor() 1868 bool enumerable = value.ToBoolean(); in ToPropertyDescriptorFast() local 1869 desc.SetEnumerable(enumerable); in ToPropertyDescriptorFast() 1921 bool enumerable = value->IsException() ? false : value->ToBoolean(); in ToPropertyDescriptor() local 1922 desc.SetEnumerable(enumerable); in ToPropertyDescriptor()
|
D | global_env_constants.h | 171 …V(JSTaggedValue, EnumerableString, ENUMERABLE_STRING_INDEX, enumerable) …
|
/arkcompiler/ets_runtime/test/moduletest/stubbuilder/ |
D | stubbuilder.js | 1053 enumerable : true, property
|
/arkcompiler/ets_frontend/test262/ |
D | es2021_tests.txt | 1579 language/expressions/async-generator/dstr/obj-ptrn-rest-skip-non-enumerable.js 1611 language/expressions/async-generator/dstr/named-obj-ptrn-rest-skip-non-enumerable.js 1731 language/expressions/async-generator/dstr/named-dflt-obj-ptrn-rest-skip-non-enumerable.js 1771 language/expressions/async-generator/dstr/dflt-obj-ptrn-rest-skip-non-enumerable.js 2012 language/statements/async-generator/dstr/obj-ptrn-rest-skip-non-enumerable.js 2115 language/statements/async-generator/dstr/dflt-obj-ptrn-rest-skip-non-enumerable.js 2279 language/statements/for-await-of/async-func-decl-dstr-obj-rest-skip-non-enumerable.js 2407 language/statements/for-await-of/async-func-dstr-const-async-obj-ptrn-rest-skip-non-enumerable.js 2440 language/statements/for-await-of/async-func-dstr-const-obj-ptrn-rest-skip-non-enumerable.js 2564 language/statements/for-await-of/async-func-dstr-let-async-obj-ptrn-rest-skip-non-enumerable.js [all …]
|
D | es2015_tests.txt | 5767 …ypedArrayConstructors/internals/DefineOwnProperty/BigInt/key-is-numericindex-desc-not-enumerable.js 5789 …t-ins/TypedArrayConstructors/internals/DefineOwnProperty/key-is-numericindex-desc-not-enumerable.js 5913 built-ins/TypedArrayConstructors/internals/OwnPropertyKeys/BigInt/not-enumerable-keys.js 5917 built-ins/TypedArrayConstructors/internals/OwnPropertyKeys/not-enumerable-keys.js
|
D | CI_tests.txt | 2108 built-ins/TypedArrayConstructors/internals/OwnPropertyKeys/not-enumerable-keys.js
|
/arkcompiler/toolchain/tooling/base/ |
D | pt_types.h | 966 PropertyDescriptor &SetEnumerable(bool enumerable) in SetEnumerable() argument 968 enumerable_ = enumerable; in SetEnumerable()
|
D | pt_types.cpp | 1369 bool enumerable = false; in Create() local 1370 ret = params.GetBool("enumerable", &enumerable); in Create() 1372 propertyDescriptor->enumerable_ = enumerable; in Create()
|
/arkcompiler/ets_runtime/ecmascript/ts_types/ |
D | lib_ark_builtins.d.ts | 18 enumerable?: boolean; property
|
/arkcompiler/ets_frontend/es2panda/test/ |
D | test262skiplist.txt | 860 …ypedArrayConstructors/internals/DefineOwnProperty/BigInt/key-is-numericindex-desc-not-enumerable.js 1133 language/expressions/class/dstr/async-private-gen-meth-dflt-obj-ptrn-rest-skip-non-enumerable.js 1153 language/expressions/class/dstr/async-private-gen-meth-obj-ptrn-rest-skip-non-enumerable.js 1251 …uage/expressions/class/dstr/async-private-gen-meth-static-dflt-obj-ptrn-rest-skip-non-enumerable.js 1271 language/expressions/class/dstr/async-private-gen-meth-static-obj-ptrn-rest-skip-non-enumerable.js 1369 language/expressions/class/dstr/private-gen-meth-dflt-obj-ptrn-rest-skip-non-enumerable.js 1389 language/expressions/class/dstr/private-gen-meth-obj-ptrn-rest-skip-non-enumerable.js 1487 language/expressions/class/dstr/private-gen-meth-static-dflt-obj-ptrn-rest-skip-non-enumerable.js 1507 language/expressions/class/dstr/private-gen-meth-static-obj-ptrn-rest-skip-non-enumerable.js 1605 language/expressions/class/dstr/private-meth-dflt-obj-ptrn-rest-skip-non-enumerable.js [all …]
|
/arkcompiler/ets_frontend/legacy_bin/api8/src/ |
D | index.js | 2 …enumerable:!0,get:function(){return this.__generatedMappings||this._parseMappings(this._mappings,t… property
|