Index: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/testsource/GettersSettersTest.dart |
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/testsource/GettersSettersTest.dart b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/testsource/GettersSettersTest.dart |
index 8b8a3fc120a128ab3d1bbc6c8b37f92eb2e4c49c..7f7acfeaa4cb833af38063b7fe7da25728ffb500 100644 |
--- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/testsource/GettersSettersTest.dart |
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/testsource/GettersSettersTest.dart |
@@ -64,7 +64,7 @@ class A { |
int x_; |
static int foo; |
- static get bar() { |
+ static get bar { |
return foo; |
} |
@@ -74,7 +74,7 @@ class A { |
A() {} |
- int get x() { |
+ int get x { |
return x_; |
} |
@@ -110,7 +110,7 @@ class C extends A { |
this.x_ = 0; |
} |
- int get x() { |
+ int get x { |
return y_; |
} |
@@ -149,7 +149,7 @@ class D extends A { |
class OverrideField extends A { |
OverrideField() : super() {} |
- int get x_() { |
+ int get x_ { |
return 27; |
} |
} |