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

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

Issue 10630005: Use correct type. (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/parser_helper.dart
diff --git a/tests/compiler/dart2js/parser_helper.dart b/tests/compiler/dart2js/parser_helper.dart
index c6a1b1c0e282020d3639f889054276b7bd7228fc..899f4654e8afb84c34403cd075fbde52e5d5c5e8 100644
--- a/tests/compiler/dart2js/parser_helper.dart
+++ b/tests/compiler/dart2js/parser_helper.dart
@@ -29,7 +29,7 @@ Node parseBodyCode(String text, Function parseMethod) {
Token tokens = scan(text);
LoggerCanceler lc = new LoggerCanceler();
Script script = new Script(new Uri(scheme: "source"), new MockFile(text));
- Library library = new LibraryElement(script);
+ LibraryElement library = new LibraryElement(script);
library.canUseNative = true;
NodeListener listener = new NodeListener(lc, library);
Parser parser = new Parser(listener);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698