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

Unified Diff: compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java

Issue 11305007: Getter with parameters is error. (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
Index: compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java b/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
index 64474bd21f4b591d888c7dc22ce1892a86b71687..e6688bb2285abbc3805a7717e124b3ba45ef1204 100644
--- a/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
+++ b/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
@@ -78,7 +78,7 @@ public class SyntaxTest extends AbstractParserTest {
parseUnit("getter.dart", Joiner.on("\n").join(
"class G {",
" // Old getter syntax",
- " int get g1() => 1;",
+ " int get g1 => 1;",
" // New getter syntax",
" int get g2 => 2;",
"}"));

Powered by Google App Engine
This is Rietveld 408576698