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

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

Issue 266913017: Convert property methods into getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 6 years, 7 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/codegen_helper.dart
diff --git a/tests/compiler/dart2js/codegen_helper.dart b/tests/compiler/dart2js/codegen_helper.dart
index be3029c626ed0c79228f09eea8c7f51b5f22b9ac..52f4312d6cd10ce1f0544762467f2e48aa091f8f 100644
--- a/tests/compiler/dart2js/codegen_helper.dart
+++ b/tests/compiler/dart2js/codegen_helper.dart
@@ -29,7 +29,7 @@ Future<Map<String, String>> generate(String code,
Map<String, String> result = new Map<String, String>();
var backend = compiler.backend;
for (var element in backend.generatedCode.keys) {
- if (element.getCompilationUnit().script.readableUri != uri) continue;
+ if (element.compilationUnit.script.readableUri != uri) continue;
var name = element.name;
var code = backend.assembleCode(element);
result[name] = code;
« no previous file with comments | « tests/compiler/dart2js/analyze_unused_dart2js_test.dart ('k') | tests/compiler/dart2js/find_my_name_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698