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

Unified Diff: compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java

Issue 10916211: Issue 4752. When convert to getter, remove also () (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use setter in *Info 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
Index: compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java
diff --git a/compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java b/compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java
index 9237fdaa3a44b32b9da1842d9fe49e23b3909800..0692b4077d60cc4dd26cc5f8affbcda99d29d875 100644
--- a/compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java
+++ b/compiler/javatests/com/google/dart/compiler/type/TypeTestCase.java
@@ -81,7 +81,7 @@ abstract class TypeTestCase extends TestCase {
Arrays.asList(new DartTypeNode(new DartIdentifier("E"))));
DartMethodDefinition iteratorMethod = DartMethodDefinition.create(
- new DartIdentifier("iterator"), new DartFunction(Collections.<DartParameter>emptyList(),
+ new DartIdentifier("iterator"), new DartFunction(Collections.<DartParameter>emptyList(), 0,
new DartBlock(Collections.<DartStatement>emptyList()), returnTypeNode),
Modifiers.NONE,
Collections.<DartInitializer>emptyList());

Powered by Google App Engine
This is Rietveld 408576698