| 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
|
|
|