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

Unified Diff: tests/language/toplevel_collision1_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/language/pseudo_kw_test.dart ('k') | tests/language/toplevel_collision2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/toplevel_collision1_test.dart
diff --git a/tests/language/toplevel_collision1_test.dart b/tests/language/toplevel_collision1_test.dart
index e71acebf89f2889aa3d1b5d5c8be419eb52aab5a..b803faa64ec4b39b6c06b1d1fbb726c6de484d49 100644
--- a/tests/language/toplevel_collision1_test.dart
+++ b/tests/language/toplevel_collision1_test.dart
@@ -4,7 +4,7 @@
int x = 100;
-get x() => 200; /// 00: compile-time error
+get x => 200; /// 00: compile-time error
set x(var i) { print(i); } /// 01: compile-time error
int x(a, b) { print(a + b); } /// 02: compile-time error
« no previous file with comments | « tests/language/pseudo_kw_test.dart ('k') | tests/language/toplevel_collision2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698