| Index: pkg/analyzer/lib/src/task/strong_mode.dart
|
| diff --git a/pkg/analyzer/lib/src/task/strong_mode.dart b/pkg/analyzer/lib/src/task/strong_mode.dart
|
| index 09176840c4d82a0a04d1c4400c92a78ab9096432..d60460e63f319fa63c773b13bcc282f0c34d7848 100644
|
| --- a/pkg/analyzer/lib/src/task/strong_mode.dart
|
| +++ b/pkg/analyzer/lib/src/task/strong_mode.dart
|
| @@ -81,7 +81,9 @@ class InstanceMemberInferrer {
|
| */
|
| InstanceMemberInferrer(this.typeProvider, this.inheritanceManager,
|
| {TypeSystem typeSystem})
|
| - : typeSystem = (typeSystem != null) ? typeSystem : new TypeSystemImpl();
|
| + : typeSystem = (typeSystem != null)
|
| + ? typeSystem
|
| + : new TypeSystemImpl(typeProvider);
|
|
|
| /**
|
| * Infer type information for all of the instance members in the given
|
|
|