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

Unified Diff: tests/language/src/CTConstTest.dart

Issue 8523034: Compile Time Constants cycle check (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reverted DartCompiler.java back to just bare necessities Created 9 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
Index: tests/language/src/CTConstTest.dart
diff --git a/tests/language/src/CTConstTest.dart b/tests/language/src/CTConstTest.dart
index 7173f384108b64effb28b878233dcd2d41ec31dc..9d8192443ab8defcb5fd0535ccaa7b6cdc7e831f 100644
--- a/tests/language/src/CTConstTest.dart
+++ b/tests/language/src/CTConstTest.dart
@@ -93,6 +93,7 @@ class CTConstTest {
} catch (IllegalAccessException e) {
caughtException = true;
}
+ print("1 Caught exception=${caughtException} (expected true)");
Expect.equals(true, caughtException);
Expect.equals(1, c11dItaly["green"]);
@@ -102,6 +103,7 @@ class CTConstTest {
} catch (IllegalAccessException e) {
caughtException = true;
}
+ print("2 Caught exception=${caughtException} (expected true)");
Expect.equals(true, caughtException);
Expect.equals(1, c11dItaly["green"]);
@@ -111,6 +113,7 @@ class CTConstTest {
} catch (IllegalAccessException e) {
caughtException = true;
}
+ print("3 Caught exception=${caughtException} (expected true)");
Expect.equals(true, caughtException);
Expect.equals(1, c11dItaly["green"]);

Powered by Google App Engine
This is Rietveld 408576698