| Index: pkg/analyzer/lib/src/task/dart.dart
|
| diff --git a/pkg/analyzer/lib/src/task/dart.dart b/pkg/analyzer/lib/src/task/dart.dart
|
| index dc1db29d13ea65749fff5c1b0e978eb328ece069..b09c6808cea65c332835d5d20f087a12bfec83c2 100644
|
| --- a/pkg/analyzer/lib/src/task/dart.dart
|
| +++ b/pkg/analyzer/lib/src/task/dart.dart
|
| @@ -334,6 +334,9 @@ class BuildClassConstructorsTask extends SourceBasedAnalysisTask {
|
| ClassElementImpl classElement = this.target;
|
| List<ConstructorElement> superConstructors = inputs[SUPER_CONSTRUCTORS];
|
| DartType superType = classElement.supertype;
|
| + if (superType == null) {
|
| + return;
|
| + }
|
| //
|
| // Shortcut for ClassElement(s) without implicit constructors.
|
| //
|
|
|