Chromium Code Reviews

Unified Diff: src/compiler/ast-graph-builder.cc

Issue 2081733004: Rip out most of our outdated modules implementation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Leftovers. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/compiler/ast-graph-builder.cc
diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
index fdb3e076673720b9d42965774b6409b3f24638e1..f8743548ac27a85795544ec50e282db526d51366 100644
--- a/src/compiler/ast-graph-builder.cc
+++ b/src/compiler/ast-graph-builder.cc
@@ -1189,11 +1189,6 @@ void AstGraphBuilder::VisitImportDeclaration(ImportDeclaration* decl) {
}
-void AstGraphBuilder::VisitExportDeclaration(ExportDeclaration* decl) {
- UNREACHABLE();
-}
-
-
void AstGraphBuilder::VisitBlock(Block* stmt) {
BlockBuilder block(this);
ControlScopeForBreakable scope(this, stmt, &block);

Powered by Google App Engine