/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/decorators/ |
D | test-ts-decorators-8.ts | 17 function f(target, propertyKey) { 19 print(propertyKey);
|
D | test-ts-decorators-3.ts | 17 function f(target, propertyKey, descriptor) { 19 print(propertyKey);
|
D | test-ts-decorators-4.ts | 17 function f(target, propertyKey) { 19 print(propertyKey);
|
D | test-ts-decorators-17.ts | 19 return function (target: any, propertyKey: any, descriptor: PropertyDescriptor): void { 20 print("exec POST, propertyKey=", propertyKey);
|
D | test-ts-decorators-5.ts | 17 function f(target, propertyKey, b) { 19 print(propertyKey);
|
D | test-ts-decorators-9.ts | 18 function f(target, propertyKey) {
|
D | test-ts-decorators-17-expected.txt | 2 exec POST, propertyKey= method1
|
D | test-ts-decorators-15.ts | 18 return function (target: any, propertyKey: string, descriptor: PropertyDescriptor) {
|
/arkcompiler/ets_runtime/test/moduletest/assignproxy/ |
D | assignproxy.js | 24 get: function(target, propertyKey, receiver) { argument 26 return target[propertyKey];
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_displaynames.cpp | 381 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()
|
D | js_list_format.cpp | 412 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()
|
D | js_serializer.cpp | 922 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/ |
D | test-static-blocks-in-class7.ts | 17 function bar(target, propertyKey){};
|
/arkcompiler/ets_frontend/ets2panda/linter/test/ |
D | non_initializable_prop_decorators.ts | 16 type PropDecorator = (target: any, propertyKey: any) => void;
|
D | arkui_decorators.ts | 16 type PropDecorator = (target: any, propertyKey: any) => void;
|
/arkcompiler/ets_frontend/ets2panda/linter-4.2/test/ |
D | non_initializable_prop_decorators.ts | 16 type PropDecorator = (target: any, propertyKey: any) => void;
|
D | arkui_decorators.ts | 16 type PropDecorator = (target: any, propertyKey: any) => void;
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_object.cpp | 1142 JSHandle<JSTaggedValue> propertyKey = JSTaggedValue::ToPropertyKey(thread, key); in CreateDataPropertyOnObjectFunctions() local 1146 JSObject::CreateDataPropertyOrThrow(thread, thisObjHandle, propertyKey, value); in CreateDataPropertyOnObjectFunctions()
|