Searched refs:LetDecl (Results 1 – 10 of 10) sorted by relevance
/arkcompiler/ets_frontend/ts2panda/src/ |
D | addVariable2Scope.ts | 29 LetDecl, 149 if (decl instanceof LetDecl) {
|
D | recorder.ts | 39 LetDecl, 310 if ((decl instanceof LetDecl || decl instanceof ConstDecl)) { 351 decl = new LetDecl(name, node, moduleKind); 577 scope.setDecls(new LetDecl("*default*", node, ModuleVarKind.EXPORTED));
|
D | syntaxChecker.ts | 36 LetDecl, 136 if ((decl2 instanceof LetDecl) || (decl2 instanceof ConstDecl)) { 142 …if (((decl1 instanceof LetDecl) || (decl1 instanceof ConstDecl) || (decl1 instanceof ClassDecl && … 143 …(decl2 instanceof LetDecl) || (decl2 instanceof ConstDecl) || (decl2 instanceof ClassDecl && ts.is…
|
D | scope.ts | 55 export class LetDecl extends Decl { class
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | declaration.h | 280 class LetDecl : public Decl { 282 explicit LetDecl(util::StringView name) : Decl(name) {} in LetDecl() function
|
D | variableFlags.h | 26 _(LET, LetDecl) \
|
D | scope.h | 295 template <typename DeclType = binder::LetDecl, typename VariableType = binder::LocalVariable>
|
/arkcompiler/ets_frontend/es2panda/parser/ |
D | statementParser.cpp | 2060 … decl = Binder()->AddDecl<binder::LetDecl>(startLoc, declflag, isDeclare, binding->Name()); in ParseVariableDeclarator() 2410 Binder()->AddDecl<binder::LetDecl>(declNode->Start(), binder::DeclarationFlags::EXPORT, in ParseExportDefaultDeclaration()
|
D | parserImpl.cpp | 3305 Binder()->AddDecl<binder::LetDecl>(lexer_->GetToken().Start(), false, ident); in ParseTsTypeParameter()
|
/arkcompiler/ets_frontend/es2panda/parser/transformer/ |
D | transformer.cpp | 1384 decl = Binder()->AddDecl<binder::LetDecl>(startPos, declflag, false, name); in CreateVariableDeclarationWithIdentify()
|