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

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

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « tests/compiler/dart2js/mirrors_helper.dart ('k') | tests/html/window_mangling_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/patch_test.dart
diff --git a/tests/compiler/dart2js/patch_test.dart b/tests/compiler/dart2js/patch_test.dart
index 3397230e6d44ed50506ec43b4240f728eeb85cbb..0d510cd081fd6a18fd0531c37629a19e84ca4c22 100644
--- a/tests/compiler/dart2js/patch_test.dart
+++ b/tests/compiler/dart2js/patch_test.dart
@@ -73,12 +73,12 @@ testPatchGetter() {
var compiler = applyPatch(
"""
class Class {
- external int get field();
+ external int get field;
}
""",
"""
patch class Class {
- patch int get field() => 5;
+ patch int get field => 5;
}
""");
var container = ensure(compiler, "Class", compiler.coreLibrary.find);
« no previous file with comments | « tests/compiler/dart2js/mirrors_helper.dart ('k') | tests/html/window_mangling_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698