| Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/DartMethodImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/DartMethodImpl.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/DartMethodImpl.java
|
| index e7878fa5477a562714177bfba706c0f0d6dd8b4c..4355770f6fff9321ccb3fde1e5b190d84a200699 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/DartMethodImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/DartMethodImpl.java
|
| @@ -104,6 +104,11 @@ public class DartMethodImpl extends NamedTypeMemberImpl implements Method {
|
| }
|
|
|
| @Override
|
| + public SourceRange getParametersOpenParen() throws DartModelException {
|
| + return new SourceRangeImpl(((DartMethodInfo) getElementInfo()).getParametersOpenParen(), 1);
|
| + }
|
| +
|
| + @Override
|
| public String[] getParameterTypeNames() throws DartModelException {
|
| ArrayList<String> typeNames = new ArrayList<String>();
|
| for (DartVariableDeclaration variable : getChildrenOfType(DartVariableDeclaration.class)) {
|
|
|