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

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

Issue 489173002: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/test/generated/element_test.dart ('k') | pkg/analyzer/test/generated/parser_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/generated/engine_test.dart
diff --git a/pkg/analyzer/test/generated/engine_test.dart b/pkg/analyzer/test/generated/engine_test.dart
index 2973ec468d8d6977d6220f70a805ce077e0d5e94..3fc34726d384272e1d2285f5db4ad59a4c345948 100644
--- a/pkg/analyzer/test/generated/engine_test.dart
+++ b/pkg/analyzer/test/generated/engine_test.dart
@@ -5141,9 +5141,9 @@
// Source source = new TestSource.con1(FileUtilities2.createFile("/test.html"), content);
// InternalAnalysisContext context = AnalysisContextFactory.contextWithCore();
// ParseHtmlTask parseTask = new ParseHtmlTask(context, source, modificationStamp, content);
-// parseTask.perform(new TestTaskVisitor_ResolveHtmlTaskTest_test_perform_valid());
+// parseTask.perform(new TestTaskVisitor_ResolveHtmlTaskTest_test_perform_valid_2());
// ResolveHtmlTask task = new ResolveHtmlTask(context, source, parseTask.modificationTime, parseTask.htmlUnit);
-// task.perform(new TestTaskVisitor_ResolveHtmlTaskTest_test_perform_valid_2(modificationStamp, source));
+// task.perform(new TestTaskVisitor_ResolveHtmlTaskTest_test_perform_valid(modificationStamp, source));
// }
// static dartSuite() {
// _ut.group('ResolveHtmlTaskTest', () {
@@ -5293,6 +5293,10 @@
// */
// class TestAnalysisContext implements InternalAnalysisContext {
// @override
+// void addListener(AnalysisListener listener) {
+// JUnitTestCase.fail("Unexpected invocation of addListener");
+// }
+// @override
// void addSourceInfo(Source source, SourceEntry info) {
// JUnitTestCase.fail("Unexpected invocation of addSourceInfo");
// }
@@ -5556,6 +5560,10 @@
// JUnitTestCase.fail("Unexpected invocation of recordLibraryElements");
// }
// @override
+// void removeListener(AnalysisListener listener) {
+// JUnitTestCase.fail("Unexpected invocation of removeListener");
+// }
+// @override
// CompilationUnit resolveCompilationUnit(Source unitSource, LibraryElement library) {
// JUnitTestCase.fail("Unexpected invocation of resolveCompilationUnit");
// return null;
@@ -6489,13 +6497,9 @@
// }
// }
// class TestTaskVisitor_ResolveHtmlTaskTest_test_perform_valid extends TestTaskVisitor<Object> {
-// @override
-// Object visitParseHtmlTask(ParseHtmlTask task) => null;
-// }
-// class TestTaskVisitor_ResolveHtmlTaskTest_test_perform_valid_2 extends TestTaskVisitor<Object> {
// long modificationStamp;
// Source source;
-// TestTaskVisitor_ResolveHtmlTaskTest_test_perform_valid_2(this.modificationStamp, this.source) : super();
+// TestTaskVisitor_ResolveHtmlTaskTest_test_perform_valid(this.modificationStamp, this.source) : super();
// @override
// Object visitResolveHtmlTask(ResolveHtmlTask task) {
// CaughtException exception = task.exception;
@@ -6509,6 +6513,10 @@
// return null;
// }
// }
+// class TestTaskVisitor_ResolveHtmlTaskTest_test_perform_valid_2 extends TestTaskVisitor<Object> {
+// @override
+// Object visitParseHtmlTask(ParseHtmlTask task) => null;
+// }
// class TestTaskVisitor_ScanDartTaskTest_test_accept extends TestTaskVisitor<Boolean> {
// @override
// bool visitScanDartTask(ScanDartTask task) => true;
« no previous file with comments | « pkg/analyzer/test/generated/element_test.dart ('k') | pkg/analyzer/test/generated/parser_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698