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

Unified Diff: dart/lib/compiler/implementation/scanner/parser.dart

Issue 11307008: Disable assertion and remove type to make host-checked mode green again. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 months 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 | « dart/lib/compiler/implementation/resolution/members.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/lib/compiler/implementation/scanner/parser.dart
diff --git a/dart/lib/compiler/implementation/scanner/parser.dart b/dart/lib/compiler/implementation/scanner/parser.dart
index 8503c8a0a4a1c8b59d3ad3a2ce813aecda7a9885..5f3e99a6c82feb6e043647b390e897e35cc29932 100644
--- a/dart/lib/compiler/implementation/scanner/parser.dart
+++ b/dart/lib/compiler/implementation/scanner/parser.dart
@@ -1540,7 +1540,7 @@ class Parser {
}
Token parseParenthesizedExpression(Token token) {
- BeginGroupToken begin = token;
+ var begin = token;
token = expect('(', token);
token = parseExpression(token);
if (!identical(begin.endGroup, token)) {
« no previous file with comments | « dart/lib/compiler/implementation/resolution/members.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698