Searched refs:MandatoryArguments (Results 1 – 8 of 8) sorted by relevance
/arkcompiler/ets_frontend/ts2panda/src/ |
D | variable.ts | 193 export const MandatoryArguments = "arguments"; constant 196 if (name === MandatoryFuncObj || name === MandatoryArguments ||
|
D | addVariable2Scope.ts | 37 MandatoryArguments, 99 … parentVariableScope.add(MandatoryArguments, VarDeclarationKind.CONST, InitStatus.INITIALIZED); 103 if (!scope.findLocal(MandatoryArguments)) { 104 scope.add(MandatoryArguments, VarDeclarationKind.CONST, InitStatus.INITIALIZED);
|
D | lexicalBinder.ts | 28 MandatoryArguments, 198 v = curScope.findLocal(MandatoryArguments); 200 v = curScope.add(MandatoryArguments, VarDeclarationKind.CONST);
|
D | syntaxCheckHelper.ts | 18 import { MandatoryArguments } from "./variable"; 74 … ts.isIdentifier(node) && (node.escapedText === "eval" || node.escapedText === MandatoryArguments);
|
D | recorder.ts | 56 import { MandatoryArguments, VarDeclarationKind } from "./variable"; 334 if (name === MandatoryArguments) {
|
D | syntaxChecker.ts | 56 import { MandatoryArguments } from "./variable"; 1374 if (name === MandatoryArguments || name === "eval") { 1437 if (name === MandatoryArguments || name === "eval") {
|
D | pandagen.ts | 192 MandatoryArguments, 535 let v = this.scope!.findLocal(MandatoryArguments);
|
D | compiler.ts | 117 MandatoryArguments, 214 this.storeMandatoryArgToLexEnv(MandatoryArguments);
|