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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java

Issue 11577022: Issue 7093. Support for inlining function references. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java
index 07c818d1c55279088a091e997d3c39ba3cbf0c46..9a95ca0b3fea998b8789964903b19f7f17ee8ca2 100644
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java
@@ -146,7 +146,7 @@ public class AST {
} else if (nodeClass == DartForStatement.class) {
return (N) new DartForStatement(null, null, null, 0, null);
} else if (nodeClass == DartFunction.class) {
- return (N) new DartFunction(new ArrayList<DartParameter>(), -1, -1, 0, null, null);
+ return (N) new DartFunction(new ArrayList<DartParameter>(), -1, -1, -1, 0, null, null);
} else if (nodeClass == DartFunctionExpression.class) {
return (N) new DartFunctionExpression(null, null, false);
} else if (nodeClass == DartFunctionObjectInvocation.class) {

Powered by Google App Engine
This is Rietveld 408576698