Home
last modified time | relevance | path

Searched refs:MandatoryArguments (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/src/
Dvariable.ts193 export const MandatoryArguments = "arguments"; constant
196 if (name === MandatoryFuncObj || name === MandatoryArguments ||
DaddVariable2Scope.ts37 MandatoryArguments,
99 … parentVariableScope.add(MandatoryArguments, VarDeclarationKind.CONST, InitStatus.INITIALIZED);
103 if (!scope.findLocal(MandatoryArguments)) {
104 scope.add(MandatoryArguments, VarDeclarationKind.CONST, InitStatus.INITIALIZED);
DlexicalBinder.ts28 MandatoryArguments,
198 v = curScope.findLocal(MandatoryArguments);
200 v = curScope.add(MandatoryArguments, VarDeclarationKind.CONST);
DsyntaxCheckHelper.ts18 import { MandatoryArguments } from "./variable";
74 … ts.isIdentifier(node) && (node.escapedText === "eval" || node.escapedText === MandatoryArguments);
Drecorder.ts56 import { MandatoryArguments, VarDeclarationKind } from "./variable";
334 if (name === MandatoryArguments) {
DsyntaxChecker.ts56 import { MandatoryArguments } from "./variable";
1374 if (name === MandatoryArguments || name === "eval") {
1437 if (name === MandatoryArguments || name === "eval") {
Dpandagen.ts192 MandatoryArguments,
535 let v = this.scope!.findLocal(MandatoryArguments);
Dcompiler.ts117 MandatoryArguments,
214 this.storeMandatoryArgToLexEnv(MandatoryArguments);