Index: pkg/analysis_server/test/abstract_context.dart |
diff --git a/pkg/analysis_server/test/abstract_context.dart b/pkg/analysis_server/test/abstract_context.dart |
index 50adbead0fc02644ee0096e8729b80b2676ed4fb..423d8d7a6eb4ddb91daf06ecec255c733577c008 100644 |
--- a/pkg/analysis_server/test/abstract_context.dart |
+++ b/pkg/analysis_server/test/abstract_context.dart |
@@ -14,7 +14,6 @@ import 'package:analyzer/src/generated/source_io.dart'; |
import 'mock_sdk.dart'; |
- |
/** |
* Finds an [Element] with the given [name]. |
*/ |
@@ -32,13 +31,11 @@ Element findChildElement(Element root, String name, [ElementKind kind]) { |
return result; |
} |
- |
/** |
* A function to be called for every [Element]. |
*/ |
typedef void _ElementVisitorFunction(Element element); |
- |
class AbstractContextTest { |
static final DartSdk SDK = new MockSdk(); |
static final UriResolver SDK_RESOLVER = new DartUriResolver(SDK); |
@@ -89,7 +86,6 @@ class AbstractContextTest { |
} |
} |
- |
/** |
* Wraps the given [_ElementVisitorFunction] into an instance of |
* [engine.GeneralizingElementVisitor]. |