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

Unified Diff: editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/util/ASTFactory.java

Issue 19590006: New analyzer_experimental snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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: 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(

Powered by Google App Engine
This is Rietveld 408576698