Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: pkg/analyzer/test/generated/resolver_test.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 627133002: Uncomment and clean up engine_test.dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rollback ServerRefactoring change Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
Index: pkg/analyzer/test/generated/resolver_test.dart
diff --git a/pkg/analyzer/test/generated/resolver_test.dart b/pkg/analyzer/test/generated/resolver_test.dart
index 9e04f2cec7d1b99fe2853f8847e90dff1b9f3811..eef04a0b02a6b57d76ab0e3983f45f9e01497618 100644
--- a/pkg/analyzer/test/generated/resolver_test.dart
+++ b/pkg/analyzer/test/generated/resolver_test.dart
@@ -51,7 +51,7 @@ class AnalysisContextFactory {
* @return the analysis context that was created
*/
static AnalysisContextImpl contextWithCore() {
- AnalysisContextFactory_AnalysisContextForTests context = new AnalysisContextFactory_AnalysisContextForTests();
+ AnalysisContextForTests context = new AnalysisContextForTests();
return initContextWithCore(context);
}
@@ -63,7 +63,7 @@ class AnalysisContextFactory {
* @return the analysis context that was created
*/
static AnalysisContextImpl contextWithCoreAndOptions(AnalysisOptions options) {
- AnalysisContextFactory_AnalysisContextForTests context = new AnalysisContextFactory_AnalysisContextForTests();
+ AnalysisContextForTests context = new AnalysisContextForTests();
context._internalSetAnalysisOptions(options);
return initContextWithCore(context);
}
@@ -243,7 +243,7 @@ class AnalysisContextFactory {
* Instances of the class `AnalysisContextForTests` implement an analysis context that has a
* fake SDK that is much smaller and faster for testing purposes.
*/
-class AnalysisContextFactory_AnalysisContextForTests extends AnalysisContextImpl {
+class AnalysisContextForTests extends AnalysisContextImpl {
@override
bool exists(Source source) => super.exists(source) || sourceFactory.dartSdk.context.exists(source);

Powered by Google App Engine
This is Rietveld 408576698