Lines Matching defs:exportDeclaration
1514 auto *exportDeclaration = AllocNode<ir::ExportDefaultDeclaration>(declNode, isExportEquals);
1515 exportDeclaration->SetRange({startLoc, endLoc});
1518 ConsumeSemicolon(exportDeclaration);
1521 return exportDeclaration;
1555 auto *exportDeclaration = AllocNode<ir::ExportAllDeclaration>(source, exported);
1556 exportDeclaration->SetRange({startLoc, endLoc});
1558 ConsumeSemicolon(exportDeclaration);
1560 return exportDeclaration;
1609 auto *exportDeclaration = AllocNode<ir::ExportNamedDeclaration>(Allocator(), source, std::move(specifiers));
1610 exportDeclaration->SetRange({startLoc, endPos});
1611 ConsumeSemicolon(exportDeclaration);
1613 return exportDeclaration;
1664 auto *exportDeclaration = AllocNode<ir::ExportNamedDeclaration>(Allocator(), decl, std::move(specifiers));
1665 exportDeclaration->SetRange({startLoc, endLoc});
1667 return exportDeclaration;