Home
last modified time | relevance | path

Searched defs:constructor (Results 1 – 25 of 202) sorted by relevance

123456789

/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-ts-parameter-property.ts18 public constructor( method in ExampleClass1
37 public constructor(readonly) { }; method in ExampleClass2
41 public constructor(public readonly) { }; method in ExampleClass3
45 public constructor(readonly readonly) { }; method in ExampleClass4
Dtest-class-constructor5.ts18 constructor() { }; method in Foo
19 constructor() { }; method in Foo
Dtest-class-constructor2.ts18 constructor(); method in Foo
21 constructor(); method in Foo
Dtest-type-with-specieal-constructor.ts18 constructor(a: 'hello'); method in ClassExample
28 constructor(); method in ns.A
Dtest-ts-parameter-property11.ts18 constructor(private readonly [bar]) { }; method in Foo
Dtest-ts-parameter-property3.ts18 constructor(readonly readonly readonly) { }; method in Foo
Dtest-class-method-overload.ts18 constructor(a: number); method in Class1
Dtest-ts-parameter-property12.ts18 constructor(private readonly { bar }) { }; method in Foo
Dtest-class-constructor4.ts18 constructor(); method in Foo
/arkcompiler/ets_frontend/ts2panda/src/
Dpandasm.ts22 constructor( method in Metadata
33 constructor(params: number = 0, retType?: string | undefined) { method in Signature
47 constructor( method in Ins
81 constructor( method in Function
119 constructor(name: string) { method in Record
136 constructor() { method in Program
159 constructor( method in CatchTable
176 constructor(vregNum: number, typeIndex: number) { method in TypeOfVreg
188 constructor(symbol: string, type: number) { method in ExportedSymbol2Type
200 constructor(symbol: string, type: number) { method in DeclaredSymbol2Type
[all …]
Dscope.ts42 constructor(name: string, node: ts.Node, isModule: ModuleVarKind) { method in Decl
50 constructor(varName: string, node: ts.Node, isModule: ModuleVarKind) { method in VarDecl
56 constructor(letName: string, node: ts.Node, isModule: ModuleVarKind) { method in LetDecl
62 constructor(constName: string, node: ts.Node, isModule: ModuleVarKind) { method in ConstDecl
68 constructor(funcName: string, node: ts.Node, isModule: ModuleVarKind) { method in FuncDecl
74 constructor(className: string, node: ts.Node, isModule: ModuleVarKind) { method in ClassDecl
80 constructor(CpName: string, node: ts.Node, isModule: ModuleVarKind = ModuleVarKind.NOT) { method in CatchParameter
86 constructor(FpName: string, node: ts.Node, isModule: ModuleVarKind = ModuleVarKind.NOT) { method in FunctionParameter
101 constructor() { } method in Scope
400 constructor(node?: ts.SourceFile) { method in GlobalScope
[all …]
Dvariable.ts38 constructor( method in Variable
128 constructor(declKind: VarDeclarationKind, name: string, status?: InitStatus) { method in LocalVariable
151 constructor(declKind: VarDeclarationKind, name: string, status?: InitStatus) { method in ModuleVariable
185 constructor(declKind: VarDeclarationKind, name: string) { method in GlobalVariable
DcompilerStatistics.ts33 constructor(instSize: number, relatedInsns?: { name: string, num: number }) { method in ItemValue
118 constructor(funcName: string) { method in HistogramStatistics
230 constructor() { method in CompilerStatistics
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-class-definition2.js18 constructor() { method in A
21 constructor() { method in A
Dtest-class-definition5.js18 get constructor() { getter in A
/arkcompiler/ets_runtime/test/quickfix/class_inheritance/patch/
Dbase.js17 constructor() { method in BaseA
25 constructor() { method in A
/arkcompiler/ets_runtime/test/quickfix/class_inheritance/
Dbase.js17 constructor() { method in BaseA
25 constructor() { method in A
/arkcompiler/ets_runtime/test/aottest/aot_type_test/typenewsuper/
Dtypenewsuper.ts24 constructor(x:number, y:string) { method in D
38 constructor() { method in E
/arkcompiler/ets_runtime/test/aottest/class_method_signature/
Dclass_method_signature.ts34 constructor() {} method in D
55 constructor() {} method in E
/arkcompiler/ets_runtime/test/moduletest/class/
Dclass.js23 constructor(x) { method in Parent
33 constructor(x, y) { method in Child
69 constructor() { method in B
/arkcompiler/ets_frontend/es2panda/test/hotfix/hotfix-throwerror/modify-class-1/
Dbase.js17 constructor(brand) { method in Car
26 constructor(brand, mod) { method in Model
Dbase_mod.js19 constructor(brand) { method in Car
28 constructor(brand, mod) { method in Model
/arkcompiler/ets_frontend/es2panda/test/hotreload/modify-class-1/
Dbase.js17 constructor(brand) { method in Car
26 constructor(brand, mod) { method in Model
Dbase_mod.js19 constructor(brand) { method in Car
28 constructor(brand, mod) { method in Model
/arkcompiler/ets_frontend/ts2panda/src/statement/
DtryStatement.ts57 constructor(beginLabel: Label, endLabel: Label) { method in LabelPair
76 constructor(pandaGen: PandaGen, catchBeginLabel: Label, labelPair: LabelPair) { method in CatchTable
116 constructor(stmt: ts.Statement, catchTable: CatchTable, trybuilder?: TryBuilderBase) { method in TryStatement
190 constructor(compiler: Compiler, pandaGen: PandaGen, Stmt: ts.Statement) { method in TryBuilderBase

123456789