| 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 9ec38f3bceced1ce257fec5459f31d1854f56dcc..bdfd628036f4e180f0ed69148f198fa316f9b17f 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
|
| @@ -140,7 +140,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>(), null, null);
|
| + return (N) new DartFunction(new ArrayList<DartParameter>(), 0, null, null);
|
| } else if (nodeClass == DartFunctionExpression.class) {
|
| return (N) new DartFunctionExpression(null, null, false);
|
| } else if (nodeClass == DartFunctionObjectInvocation.class) {
|
|
|