| Index: pkg/analyzer/test/generated/resolver_test_case.dart
|
| diff --git a/pkg/analyzer/test/generated/resolver_test_case.dart b/pkg/analyzer/test/generated/resolver_test_case.dart
|
| index e79552500959249b4bffeef443eb67c1346d5f2e..c9b1ad782dea37240f9c3c1528b314fe77f48cf4 100644
|
| --- a/pkg/analyzer/test/generated/resolver_test_case.dart
|
| +++ b/pkg/analyzer/test/generated/resolver_test_case.dart
|
| @@ -402,7 +402,6 @@ class ResolverTestCase extends EngineTestCase {
|
| // TODO(rnystrom): Use this in more tests that have the same structure.
|
| void assertErrorsInCode(String code, List<ErrorCode> errors) {
|
| Source source = addSource(code);
|
| - computeLibrarySourceErrors(source);
|
| assertErrors(source, errors);
|
| verify([source]);
|
| }
|
| @@ -414,7 +413,6 @@ class ResolverTestCase extends EngineTestCase {
|
| */
|
| void assertErrorsInUnverifiedCode(String code, List<ErrorCode> errors) {
|
| Source source = addSource(code);
|
| - computeLibrarySourceErrors(source);
|
| assertErrors(source, errors);
|
| }
|
|
|
| @@ -435,7 +433,6 @@ class ResolverTestCase extends EngineTestCase {
|
| // TODO(rnystrom): Use this in more tests that have the same structure.
|
| void assertNoErrorsInCode(String code) {
|
| Source source = addSource(code);
|
| - computeLibrarySourceErrors(source);
|
| assertNoErrors(source);
|
| verify([source]);
|
| }
|
| @@ -500,15 +497,6 @@ class ResolverTestCase extends EngineTestCase {
|
| }
|
|
|
| /**
|
| - * Computes errors for the given [librarySource].
|
| - * This assumes that the given [librarySource] and its parts have already
|
| - * been added to the content provider using the method [addNamedSource].
|
| - */
|
| - void computeLibrarySourceErrors(Source librarySource) {
|
| - analysisContext.computeErrors(librarySource);
|
| - }
|
| -
|
| - /**
|
| * Create a library element that represents a library named `"test"` containing a single
|
| * empty compilation unit.
|
| *
|
|
|