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

Unified Diff: compiler/javatests/com/google/dart/compiler/parser/ClassesInterfaces.dart

Issue 10534065: In analyzer, catch use of continue and break in inappropriate places (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: # Created 8 years, 6 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
Index: compiler/javatests/com/google/dart/compiler/parser/ClassesInterfaces.dart
diff --git a/compiler/javatests/com/google/dart/compiler/parser/ClassesInterfaces.dart b/compiler/javatests/com/google/dart/compiler/parser/ClassesInterfaces.dart
index 9fbdcec6bb50c1f24c61d1f1477df15345e3ff3f..594614aac40e2f2b0b1d0716b1ff3d875c56d583 100644
--- a/compiler/javatests/com/google/dart/compiler/parser/ClassesInterfaces.dart
+++ b/compiler/javatests/com/google/dart/compiler/parser/ClassesInterfaces.dart
@@ -56,7 +56,6 @@ class Baz extends Kuk implements A, B, C {
}
try { } catch (var e) { }
L0: while (false) try { } catch (int e) { } finally { break L0; }
- L1: if (false) { continue L1; }
int kongy(x,y) { return 42; } // This is a comment.
42 is Baz;

Powered by Google App Engine
This is Rietveld 408576698