| 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 b5b1d40361dc55508fcb7641d093d1b18238fb52..abecad5f83e3e9efa93a8ceb440d88aee8e78473 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
|
| @@ -85,6 +85,11 @@ public class DartMethodImpl extends NamedTypeMemberImpl implements Method {
|
| }
|
|
|
| @Override
|
| + public SourceRange getParametersCloseParen() throws DartModelException {
|
| + return new SourceRangeImpl(((DartMethodInfo) getElementInfo()).getParametersCloseParen(), 1);
|
| + }
|
| +
|
| + @Override
|
| public String[] getParameterTypeNames() throws DartModelException {
|
| ArrayList<String> typeNames = new ArrayList<String>();
|
| for (DartVariableDeclaration variable : getChildrenOfType(DartVariableDeclaration.class)) {
|
|
|