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

Unified Diff: dart/tests/try/web/incremental_compilation_update_test.dart

Issue 750653002: Checked mode fixes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « dart/pkg/dart2js_incremental/lib/library_updater.dart ('k') | dart/tools/bots/compiler.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/try/web/incremental_compilation_update_test.dart
diff --git a/dart/tests/try/web/incremental_compilation_update_test.dart b/dart/tests/try/web/incremental_compilation_update_test.dart
index cb93efeb749b0b7bf9f9cf965af4b98d13c7e803..0c88155a63bf25d082f9af48b3e2ca7fc95d19f4 100644
--- a/dart/tests/try/web/incremental_compilation_update_test.dart
+++ b/dart/tests/try/web/incremental_compilation_update_test.dart
@@ -1006,6 +1006,8 @@ void main() {
return asyncTest(() => Future.forEach(tests, compileAndRun));
}
+int testCount = 1;
+
Future compileAndRun(List<ProgramResult> programs) {
var status = new DivElement();
document.body.append(status);
@@ -1021,7 +1023,9 @@ Future compileAndRun(List<ProgramResult> programs) {
ProgramResult program = programs.first;
- status.append(new HeadingElement.h2()..appendText("Full program:"));
+ status.append(
+ new HeadingElement.h2()
+ ..appendText("Full program #${testCount++}:"));
Bill Hesse 2014/11/24 11:50:14 two-space indent for cascades, according to the st
ahe 2014/11/25 13:50:25 I'm going to stay consistent with the existing sty
status.append(numberedLines(program.code));
status.style.color = 'orange';
« no previous file with comments | « dart/pkg/dart2js_incremental/lib/library_updater.dart ('k') | dart/tools/bots/compiler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698