Home
last modified time | relevance | path

Searched refs:exportDeclaration (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_frontend/es2panda/parser/
DstatementParser.cpp2423 auto *exportDeclaration = AllocNode<ir::ExportDefaultDeclaration>(declNode, isExportEquals); in ParseExportDefaultDeclaration() local
2424 exportDeclaration->SetRange({startLoc, endLoc}); in ParseExportDefaultDeclaration()
2427 ConsumeSemicolon(exportDeclaration); in ParseExportDefaultDeclaration()
2430 return exportDeclaration; in ParseExportDefaultDeclaration()
2465 auto *exportDeclaration = AllocNode<ir::ExportAllDeclaration>(source, exported); in ParseExportAllDeclaration() local
2466 exportDeclaration->SetRange({startLoc, endLoc}); in ParseExportAllDeclaration()
2468 ConsumeSemicolon(exportDeclaration); in ParseExportAllDeclaration()
2470 return exportDeclaration; in ParseExportAllDeclaration()
2532 …auto *exportDeclaration = AllocNode<ir::ExportNamedDeclaration>(source, std::move(specifiers), isT… in ParseExportNamedSpecifiers() local
2533 exportDeclaration->SetRange({startLoc, endPos}); in ParseExportNamedSpecifiers()
[all …]
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp1538 …auto *exportDeclaration = AllocNode<ir::ExportNamedDeclaration>(variableDeclaration, std::move(spe… in CreateVariableDeclarationForTSEnumOrTSModule() local
1542 return exportDeclaration; in CreateVariableDeclarationForTSEnumOrTSModule()