| Index: editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/util/ASTFactory.java
|
| diff --git a/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/util/ASTFactory.java b/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/util/ASTFactory.java
|
| index c2bfb7897daf2b11d25716ffa3e3a32367a52b9c..05709dc4a52340adb16bb2229f460b9114a59302 100644
|
| --- a/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/util/ASTFactory.java
|
| +++ b/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/util/ASTFactory.java
|
| @@ -655,6 +655,11 @@ public final class ASTFactory {
|
| return new FunctionExpressionInvocation(function, argumentList(arguments));
|
| }
|
|
|
| + public static FunctionExpressionInvocation functionExpressionInvocation(Expression function,
|
| + List<Expression> arguments) {
|
| + return new FunctionExpressionInvocation(function, argumentList(arguments));
|
| + }
|
| +
|
| public static FunctionTypedFormalParameter functionTypedFormalParameter(TypeName returnType,
|
| String identifier, FormalParameter... parameters) {
|
| return new FunctionTypedFormalParameter(
|
|
|