| Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/PropertyGetter.java
|
| ===================================================================
|
| --- editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/PropertyGetter.java (revision 10526)
|
| +++ editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/PropertyGetter.java (working copy)
|
| @@ -66,7 +66,6 @@
|
| import com.google.dart.compiler.ast.DartParenthesizedExpression;
|
| import com.google.dart.compiler.ast.DartPropertyAccess;
|
| import com.google.dart.compiler.ast.DartRedirectConstructorInvocation;
|
| -import com.google.dart.compiler.ast.DartResourceDirective;
|
| import com.google.dart.compiler.ast.DartReturnStatement;
|
| import com.google.dart.compiler.ast.DartSourceDirective;
|
| import com.google.dart.compiler.ast.DartStatement;
|
| @@ -630,15 +629,6 @@
|
| }
|
|
|
| @Override
|
| - public Object visitResourceDirective(DartResourceDirective node) {
|
| - if (property == PropertyDescriptorHelper.DART_RESOURCE_DIRECTIVE_URI) {
|
| - return node.getResourceUri();
|
| - } else {
|
| - return visitDirective(node);
|
| - }
|
| - }
|
| -
|
| - @Override
|
| public Object visitReturnStatement(DartReturnStatement node) {
|
| if (property == PropertyDescriptorHelper.DART_RETURN_STATEMENT_VALUE) {
|
| return node.getValue();
|
|
|