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

Unified Diff: tests/language/field2_negative_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/field1_negative_test.dart ('k') | tests/language/field6_negative_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/field2_negative_test.dart
diff --git a/tests/language/field2_negative_test.dart b/tests/language/field2_negative_test.dart
index c80846440fa89a587a8a95c40bde36f9d134ea64..63ddca1552010bf04a11bada2b12ab8549c55654 100644
--- a/tests/language/field2_negative_test.dart
+++ b/tests/language/field2_negative_test.dart
@@ -6,14 +6,14 @@
// in the class.
class C {
- get a() {
+ get a {
return 1;
}
set a(int val) {
var x = val;
}
- get b() {
+ get b {
return 2;
}
set b(int val) {
« no previous file with comments | « tests/language/field1_negative_test.dart ('k') | tests/language/field6_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698