Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: lib/visitor.dart

Issue 2460373002: Remove BlockExpression from the Kernel language. (Closed)
Patch Set: Incorporate review comments, format continuation.dart. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/type_propagation/builder.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/visitor.dart
diff --git a/lib/visitor.dart b/lib/visitor.dart
index 409c949a40b6253ee86651351d9410e5eb88801d..4b0fa070ffeaba2812b4a38a7cb1aa87bba70e87 100644
--- a/lib/visitor.dart
+++ b/lib/visitor.dart
@@ -51,7 +51,6 @@ abstract class ExpressionVisitor<R> {
R visitBoolLiteral(BoolLiteral node) => defaultBasicLiteral(node);
R visitNullLiteral(NullLiteral node) => defaultBasicLiteral(node);
R visitLet(Let node) => defaultExpression(node);
- R visitBlockExpression(BlockExpression node) => defaultExpression(node);
}
abstract class StatementVisitor<R> {
@@ -156,7 +155,6 @@ class TreeVisitor<R>
R visitBoolLiteral(BoolLiteral node) => defaultBasicLiteral(node);
R visitNullLiteral(NullLiteral node) => defaultBasicLiteral(node);
R visitLet(Let node) => defaultExpression(node);
- R visitBlockExpression(BlockExpression node) => defaultExpression(node);
// Statements
R defaultStatement(Statement node) => defaultTreeNode(node);
« no previous file with comments | « lib/type_propagation/builder.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698