Home
last modified time | relevance | path

Searched refs:propertyKey (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/decorators/
Dtest-ts-decorators-8.ts17 function f(target, propertyKey) {
19 print(propertyKey);
Dtest-ts-decorators-3.ts17 function f(target, propertyKey, descriptor) {
19 print(propertyKey);
Dtest-ts-decorators-4.ts17 function f(target, propertyKey) {
19 print(propertyKey);
Dtest-ts-decorators-17.ts19 return function (target: any, propertyKey: any, descriptor: PropertyDescriptor): void {
20 print("exec POST, propertyKey=", propertyKey);
Dtest-ts-decorators-5.ts17 function f(target, propertyKey, b) {
19 print(propertyKey);
Dtest-ts-decorators-9.ts18 function f(target, propertyKey) {
Dtest-ts-decorators-17-expected.txt2 exec POST, propertyKey= method1
Dtest-ts-decorators-15.ts18 return function (target: any, propertyKey: string, descriptor: PropertyDescriptor) {
/arkcompiler/ets_runtime/test/moduletest/assignproxy/
Dassignproxy.js24 get: function(target, propertyKey, receiver) { argument
26 return target[propertyKey];
/arkcompiler/ets_runtime/ecmascript/
Djs_displaynames.cpp381 JSHandle<JSTaggedValue> propertyKey = globalConst->GetHandledLocaleString(); in ResolvedOptions() local
383 JSObject::CreateDataPropertyOrThrow(thread, options, propertyKey, locale); in ResolvedOptions()
388 propertyKey = globalConst->GetHandledStyleString(); in ResolvedOptions()
390 JSObject::CreateDataPropertyOrThrow(thread, options, propertyKey, styleString); in ResolvedOptions()
395 propertyKey = globalConst->GetHandledTypeString(); in ResolvedOptions()
397 JSObject::CreateDataPropertyOrThrow(thread, options, propertyKey, typeString); in ResolvedOptions()
402 propertyKey = globalConst->GetHandledFallbackString(); in ResolvedOptions()
404 JSObject::CreateDataPropertyOrThrow(thread, options, propertyKey, fallbackString); in ResolvedOptions()
Djs_list_format.cpp412 JSHandle<JSTaggedValue> propertyKey = globalConst->GetHandledLocaleString(); in ResolvedOptions() local
414 JSObject::CreateDataPropertyOrThrow(thread, options, propertyKey, locale); in ResolvedOptions()
419 propertyKey = globalConst->GetHandledTypeString(); in ResolvedOptions()
421 JSObject::CreateDataPropertyOrThrow(thread, options, propertyKey, typeString); in ResolvedOptions()
426 propertyKey = globalConst->GetHandledStyleString(); in ResolvedOptions()
428 JSObject::CreateDataPropertyOrThrow(thread, options, propertyKey, styleString); in ResolvedOptions()
Djs_serializer.cpp922 JSMutableHandle<JSTaggedValue> propertyKey(thread_, JSTaggedValue::Undefined()); in WritePlainObject() local
927 propertyKey.Update(keyVector[i]); in WritePlainObject()
928 if (!SerializeJSTaggedValue(propertyKey)) { in WritePlainObject()
932 JSObject::OrdinaryGetOwnProperty(thread_, obj, propertyKey, desc); in WritePlainObject()
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-static-blocks-in-class7.ts17 function bar(target, propertyKey){};
/arkcompiler/ets_frontend/ets2panda/linter/test/
Dnon_initializable_prop_decorators.ts16 type PropDecorator = (target: any, propertyKey: any) => void;
Darkui_decorators.ts16 type PropDecorator = (target: any, propertyKey: any) => void;
/arkcompiler/ets_frontend/ets2panda/linter-4.2/test/
Dnon_initializable_prop_decorators.ts16 type PropDecorator = (target: any, propertyKey: any) => void;
Darkui_decorators.ts16 type PropDecorator = (target: any, propertyKey: any) => void;
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_object.cpp1142 JSHandle<JSTaggedValue> propertyKey = JSTaggedValue::ToPropertyKey(thread, key); in CreateDataPropertyOnObjectFunctions() local
1146 JSObject::CreateDataPropertyOrThrow(thread, thisObjHandle, propertyKey, value); in CreateDataPropertyOnObjectFunctions()