Home
last modified time | relevance | path

Searched defs:prop (Results 1 – 25 of 117) sorted by relevance

12345

/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/classes/
Dtest-ts-classes-13.ts18 prop = "str1"; property in A
25 prop = "Str_NSEA"; property in ns.NSEA
32 prop = "str_B"; variable
39 prop = "str_NSB"; variable
Dtest-ts-classes-18.ts18 prop = 1; property in Base
26 prop = 2; property in A
32 constructor(public prop = 3) { property in B
Dtest-ts-classes-12.ts20 prop = "base_prop"; property in Base
36 prop:string; property in B
48 constructor(public prop = "tsparam_prop") { property in C
Dtest-ts-classes-14.ts21 prop = "prop_ns.A"; property in ns.A
28 prop = "prop_ns.B"; variable
Dtest-ts-classes-22.ts19 prop:number; property in A
/arkcompiler/ets_frontend/ts2panda/src/base/
Dlreference.ts36 private prop: VReg | undefined = undefined; property in LReference
66 let prop: VReg | number | string; variable
88 let prop: VReg | number | string; variable
159 … let { obj: object, prop: property } = getObjAndProp(realNode, objReg, propReg, compiler); variable
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/
DobjectDestructuring.ts21 var { prop: [var3, , , var4], var5 = true } = { prop: [1, [], {}, "foo"] } variable
26 var { prop: { var6 = 3, var7 = "" } = { var6: "foo", var7: true } } = { prop: { var6: 1, var7: "bar… variable
32 var { prop: { prop: [var8 = 1, var9 = { a: 3, b: "bar" }] } = { prop: ["foo", true] } } = { prop: {… variable
50 var { prop: { var15, ...var16 } }: { prop: { var15: number, a: string, b(a: number, b: number[]): b… variable
/arkcompiler/ets_frontend/ets2panda/test/compiler/ts/
DobjectDestructuring.ts21 var { prop: [var3, , , var4], var5 = true } = { prop: [1, [], {}, "foo"] } variable
26 var { prop: { var6 = 3, var7 = "" } = { var6: "foo", var7: true } } = { prop: { var6: 1, var7: "bar… variable
32 var { prop: { prop: [var8 = 1, var9 = { a: 3, b: "bar" }] } = { prop: ["foo", true] } } = { prop: {… variable
50 var { prop: { var15, ...var16 } }: { prop: { var15: number, a: string, b(a: number, b: number[]): b… variable
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DobjectExpression.cpp100 auto *prop = it->AsProperty(); in ValidateExpression() local
241 static const Literal *CreateLiteral(compiler::PandaGen *pg, const ir::Property *prop, util::BitSet … in CreateLiteral()
290 const ir::Property *prop = properties_[i]->AsProperty(); in CompileStaticProperties() local
342 …ObjectExpression::CompilePropertyOfGetterOrSetter(compiler::PandaGen *pg, const ir::Property *prop, in CompilePropertyOfGetterOrSetter()
368 void ObjectExpression::CompilePropertyWithInit(compiler::PandaGen *pg, const ir::Property *prop, in CompilePropertyWithInit()
421 const ir::Property *prop = properties_[i]->AsProperty(); in CompileRemainingProperties() local
485 const ir::Property *prop = (*it)->AsProperty(); in CheckPattern() local
618 binder::VariableFlags GetFlagsForProperty(const ir::Property *prop) in GetFlagsForProperty()
633 checker::Type *GetTypeForProperty(const ir::Property *prop, checker::Checker *checker) in GetTypeForProperty()
666 const ir::Property *prop = it->AsProperty(); in Check() local
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/projects/ts_test_compiler_project/dir/
Ddir_src.ts18 static prop = 1; property in A
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/compiler/
Dtest-ts-static-blocks-in-class3.ts19 static prop: number = 1; property in MultiFoo
Dtest-ts-class-element-3.ts18 static prop; property in B1
Dtest-ts-class-element-1.ts18 prop; property in A1
Dtest-ts-class-element-4.ts18 static prop = 1; property in B2
Dtest-ts-class-element-2.ts18 prop = 1; property in A2
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-class-definiton27.ts18 abstract prop: string = "str"; property in A
Dtest-static-blocks-in-class4.ts18 static prop: number = 1; property in MultiFoo
Dtest-class-constructor11.ts19 constructor(public prop: number) { property in A
Dtest-class-constructor10.ts19 prop: number = 1; property in A
/arkcompiler/ets_runtime/test/moduletest/builtins/
Dbuiltinsobject.js24 prop: 'exists' property
/arkcompiler/ets_frontend/ts2panda/tests/statements/
DforIn.test.ts46 let prop = new VReg(); variable
122 let prop = new VReg(); variable
159 let prop = new VReg(); variable
/arkcompiler/ets_frontend/es2panda/test/parser/ts/transformed_cases/
Dtest-class-constructor2.ts18 prop: number = 1; property in B
Dtest-class-constructor3.ts20 prop: number = 1; property in B
/arkcompiler/ets_frontend/ts2panda/tests/expression/
DtemplateExpression.test.ts133 let prop = new VReg(); variable
191 let prop = new VReg(); variable
251 let prop = new VReg(); variable
324 let prop = new VReg(); variable
/arkcompiler/ets_frontend/es2panda/test/parser/sendable_class/
Dsendable-class-getter-setter.ts17 private prop: string; property in A

12345