| Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/completion/ScopedNameFinder.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/completion/ScopedNameFinder.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/completion/ScopedNameFinder.java
|
| index 9867e3cca558509411dd149bcb210e7040e5c5d6..5b2e14427a2e20d4fd2b500042ef6fc84df211f4 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/completion/ScopedNameFinder.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/completion/ScopedNameFinder.java
|
| @@ -195,7 +195,7 @@ public class ScopedNameFinder extends ASTVisitor<Void> {
|
|
|
| @Override
|
| public Void visitFunction(DartFunction node) {
|
| - for (DartParameter param : node.getParams()) {
|
| + for (DartParameter param : node.getParameters()) {
|
| addToScope(param);
|
| }
|
| return visitNode(node);
|
|
|