| Index: pkg/compiler/lib/src/compiler.dart
|
| diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
|
| index fad4298d35af97a8d80cc6d5b4c10ba27292c562..c68a29a96d52da957ad0658a27eac65270e01ec5 100644
|
| --- a/pkg/compiler/lib/src/compiler.dart
|
| +++ b/pkg/compiler/lib/src/compiler.dart
|
| @@ -652,6 +652,7 @@ abstract class Compiler implements DiagnosticListener {
|
| final bool enableTypeAssertions;
|
| final bool enableUserAssertions;
|
| final bool trustTypeAnnotations;
|
| + final bool trustPrimitives;
|
| final bool enableConcreteTypeInference;
|
| final bool disableTypeInferenceFlag;
|
| final bool dumpInfo;
|
| @@ -940,6 +941,7 @@ abstract class Compiler implements DiagnosticListener {
|
| Compiler({this.enableTypeAssertions: false,
|
| this.enableUserAssertions: false,
|
| this.trustTypeAnnotations: false,
|
| + this.trustPrimitives: false,
|
| this.enableConcreteTypeInference: false,
|
| bool disableTypeInferenceFlag: false,
|
| this.maxConcreteTypeSize: 5,
|
|
|