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

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

Issue 11228053: Get rid of more () in getter definitions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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/cpa_inference_test.dart ('k') | utils/testrunner/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/dart_backend_test.dart
diff --git a/tests/compiler/dart2js/dart_backend_test.dart b/tests/compiler/dart2js/dart_backend_test.dart
index 761f7f9403a5e7db9b13d67f122ea77ce313a43b..e834609b60ce3934ec3c03ea7969da4cde6ae87c 100644
--- a/tests/compiler/dart2js/dart_backend_test.dart
+++ b/tests/compiler/dart2js/dart_backend_test.dart
@@ -41,12 +41,12 @@ class Platform {
const htmlLib = r'''
#library('html');
Window __window;
-Window get window() => __window;
+Window get window => __window;
abstract class Window {
- abstract Navigator get navigator;
+ Navigator get navigator;
}
abstract class Navigator {
- abstract String get userAgent;
+ String get userAgent;
}
''';
« no previous file with comments | « tests/compiler/dart2js/cpa_inference_test.dart ('k') | utils/testrunner/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698