| 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 b9efb5928f757f083892f6801618233aabbb61a1..2db99146898cde14482ece9d4e9880abd07112df 100644
|
| --- a/pkg/analyzer/lib/src/task/strong_mode.dart
|
| +++ b/pkg/analyzer/lib/src/task/strong_mode.dart
|
| @@ -112,7 +112,8 @@ class InstanceMemberInferrer {
|
| /**
|
| * Initialize a newly create inferrer.
|
| */
|
| - InstanceMemberInferrer(this.typeProvider, this.typeSystem);
|
| + InstanceMemberInferrer(this.typeProvider, {TypeSystem typeSystem})
|
| + : typeSystem = (typeSystem != null) ? typeSystem : new TypeSystemImpl();
|
|
|
| /**
|
| * Infer type information for all of the instance members in the given
|
|
|