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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/completion/ast/MethodInvocationCompleter.java

Issue 10696056: Fix for issues 3729 and 3523 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/completion/ast/MethodInvocationCompleter.java
===================================================================
--- editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/completion/ast/MethodInvocationCompleter.java (revision 9267)
+++ editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/completion/ast/MethodInvocationCompleter.java (working copy)
@@ -25,16 +25,17 @@
static final long serialVersionUID = 1L;
public static MethodInvocationCompleter from(DartMethodInvocation node) {
- return CompletionUtil.init(
- new MethodInvocationCompleter(node.getTarget(), node.getFunctionName(), node.getArguments()),
- node);
+ return CompletionUtil.init(new MethodInvocationCompleter(
+ node.getTarget(),
+ node.getFunctionName(),
+ node.getArguments()), node);
}
private Stack<Mark> stack;
- public MethodInvocationCompleter(DartExpression target, DartIdentifier functionName,
- List<DartExpression> args) {
- super(target, functionName, args);
+ public MethodInvocationCompleter(
+ DartExpression target, DartIdentifier functionName, List<DartExpression> args) {
+ super(target, false, functionName, args);
}
@Override

Powered by Google App Engine
This is Rietveld 408576698