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

Unified Diff: lib/binary/ast_from_binary.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/ast.dart ('k') | lib/binary/ast_to_binary.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/binary/ast_from_binary.dart
diff --git a/lib/binary/ast_from_binary.dart b/lib/binary/ast_from_binary.dart
index 40a178b01eac1d2088269a360532ca096d93538f..bbad877591cf1b1e3a6bb434a5f6e64d7c7c3eba 100644
--- a/lib/binary/ast_from_binary.dart
+++ b/lib/binary/ast_from_binary.dart
@@ -660,10 +660,6 @@ class BinaryBuilder {
var body = readExpression();
variableStack.length = stackHeight;
return new Let(variable, body);
- case Tag.BlockExpression:
- var body = readBlock();
- var expression = readExpression();
- return new BlockExpression(body, expression);
default:
throw fail('Invalid expression tag: $tag');
}
« no previous file with comments | « lib/ast.dart ('k') | lib/binary/ast_to_binary.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698