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

Unified Diff: tests/compiler/dart2js/unparser_test.dart

Issue 10855199: Refactor program traversing logic. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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: tests/compiler/dart2js/unparser_test.dart
diff --git a/tests/compiler/dart2js/unparser_test.dart b/tests/compiler/dart2js/unparser_test.dart
index bce8f30219d950912f73d3a80c1dea5452a9f5a9..4dd587b6ca6f5bb04f7012efc33af762695fdcac 100644
--- a/tests/compiler/dart2js/unparser_test.dart
+++ b/tests/compiler/dart2js/unparser_test.dart
@@ -188,7 +188,7 @@ testVariableDefinitions() {
// Maybe typedef should be included in the result too, but it
// works fine without it.
testDart2Dart(
- 'main(){new A((arg){});}typedef void foofunc(arg);'
+ 'typedef void foofunc(arg);main(){new A((arg){});}'
'class A{A(foofunc this.handler);final foofunc handler;}');
}

Powered by Google App Engine
This is Rietveld 408576698