| Index: pkg/analyzer/lib/src/generated/incremental_resolver.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/incremental_resolver.dart b/pkg/analyzer/lib/src/generated/incremental_resolver.dart
|
| index 924432bef56152696086c0ae89f15e3424625a16..3a3374a2e2ae4e99d822c0fcb3a1b2527c128424 100644
|
| --- a/pkg/analyzer/lib/src/generated/incremental_resolver.dart
|
| +++ b/pkg/analyzer/lib/src/generated/incremental_resolver.dart
|
| @@ -20,6 +20,7 @@ import 'package:analyzer/src/task/dart.dart'
|
| SCAN_ERRORS,
|
| USED_IMPORTED_ELEMENTS,
|
| USED_LOCAL_ELEMENTS,
|
| + VARIABLE_REFERENCE_ERRORS,
|
| VERIFY_ERRORS;
|
| import 'package:analyzer/task/dart.dart'
|
| show DART_ERRORS, LibrarySpecificUnit, PARSED_UNIT, TOKEN_STREAM;
|
| @@ -1133,10 +1134,11 @@ class IncrementalResolver {
|
| }
|
|
|
| void _shiftEntryErrors_NEW() {
|
| - _shiftErrors_NEW(RESOLVE_TYPE_NAMES_ERRORS);
|
| + _shiftErrors_NEW(HINTS);
|
| _shiftErrors_NEW(RESOLVE_REFERENCES_ERRORS);
|
| + _shiftErrors_NEW(RESOLVE_TYPE_NAMES_ERRORS);
|
| + _shiftErrors_NEW(VARIABLE_REFERENCE_ERRORS);
|
| _shiftErrors_NEW(VERIFY_ERRORS);
|
| - _shiftErrors_NEW(HINTS);
|
| }
|
|
|
| void _shiftEntryErrors_OLD() {
|
| @@ -1185,8 +1187,9 @@ class IncrementalResolver {
|
| }
|
|
|
| void _updateEntry_NEW() {
|
| - _updateErrors_NEW(RESOLVE_TYPE_NAMES_ERRORS, []);
|
| _updateErrors_NEW(RESOLVE_REFERENCES_ERRORS, _resolveErrors);
|
| + _updateErrors_NEW(RESOLVE_TYPE_NAMES_ERRORS, []);
|
| + _updateErrors_NEW(VARIABLE_REFERENCE_ERRORS, []);
|
| _updateErrors_NEW(VERIFY_ERRORS, _verifyErrors);
|
| // invalidate results we don't update incrementally
|
| newUnitEntry.setState(USED_IMPORTED_ELEMENTS, CacheState.INVALID);
|
|
|