Home
last modified time | relevance | path

Searched refs:parameterLength (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/tests/statements/
DfunctionDeclaration.test.ts103 let parameterLength = functionPg!.getParameterLength(); variable
104 expect(parameterLength === 0).to.be.true;
152 let parameterLength = element.getParameterLength(); variable
153 expect(parameterLength === 1).to.be.true;
/arkcompiler/ets_frontend/ts2panda/tests/expression/
DpropertyAccess.test.ts121 let parameterLength = element.getParameterLength(); variable
122 expect(parameterLength === 1).to.be.true;
/arkcompiler/ets_frontend/ts2panda/src/
Dscope.ts465 private parameterLength: number = 0; property in FunctionScope
474 this.parameterLength = length;
478 return this.parameterLength;
Dpandagen.ts1317 …defineClassWithBuffer(node: ts.Node, name: string, litId: string, parameterLength: number, base: V…
1320 defineClassWithBuffer(name, litId, parameterLength, base)
/arkcompiler/ets_frontend/ts2panda/src/base/
DbcGenUtil.ts376 export function defineClassWithBuffer(id: string, litId: string, parameterLength: number, base: VRe…
377 return new Defineclasswithbuffer(new Imm(0), id, litId, new Imm(parameterLength), base);
/arkcompiler/ets_frontend/ts2panda/src/statement/
DclassStatement.ts271 let parameterLength = getParameterLength4Ctor(stmt);
272 pandaGen.defineClassWithBuffer(stmt, internalName, litId, parameterLength, vregs[0]);
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_manager.cpp1114 uint32_t parameterLength = GetFunctionTypeLength(gt); in GetFunctionTypeStr() local
1115 for (uint32_t i = 0; i < parameterLength; i++) { in GetFunctionTypeStr()
1118 if (i != parameterLength - 1) { in GetFunctionTypeStr()