| 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 2b98d4aac8180a02c8f96616c0214d51599e9c2a..f061d3486d77cb580e7bd4494653696da80f5d91 100644
|
| --- a/pkg/analyzer/lib/src/generated/incremental_resolver.dart
|
| +++ b/pkg/analyzer/lib/src/generated/incremental_resolver.dart
|
| @@ -1722,7 +1722,7 @@ class PoorMansIncrementalResolver {
|
| } else if (token is TokenWithComment) {
|
| token.precedingComments = comment;
|
| } else {
|
| - Type parentType = token != null ? token.runtimeType : null;
|
| + Type parentType = token?.runtimeType;
|
| throw new AnalysisException('Uknown parent token type: $parentType');
|
| }
|
| }
|
|
|