Home
last modified time | relevance | path

Searched refs:LetDecl (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/src/
DaddVariable2Scope.ts29 LetDecl,
149 if (decl instanceof LetDecl) {
Drecorder.ts39 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));
DsyntaxChecker.ts36 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…
Dscope.ts55 export class LetDecl extends Decl { class
/arkcompiler/ets_frontend/es2panda/binder/
Ddeclaration.h280 class LetDecl : public Decl {
282 explicit LetDecl(util::StringView name) : Decl(name) {} in LetDecl() function
DvariableFlags.h26 _(LET, LetDecl) \
Dscope.h295 template <typename DeclType = binder::LetDecl, typename VariableType = binder::LocalVariable>
/arkcompiler/ets_frontend/es2panda/parser/
DstatementParser.cpp2060 … decl = Binder()->AddDecl<binder::LetDecl>(startLoc, declflag, isDeclare, binding->Name()); in ParseVariableDeclarator()
2410 Binder()->AddDecl<binder::LetDecl>(declNode->Start(), binder::DeclarationFlags::EXPORT, in ParseExportDefaultDeclaration()
DparserImpl.cpp3305 Binder()->AddDecl<binder::LetDecl>(lexer_->GetToken().Start(), false, ident); in ParseTsTypeParameter()
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp1384 decl = Binder()->AddDecl<binder::LetDecl>(startPos, declflag, false, name); in CreateVariableDeclarationWithIdentify()