| Index: pkg/compiler/lib/src/compiler.dart
 | 
| diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
 | 
| index 52201fcd4415382c7e5a292d4dbf13f4a197c2ee..fa655c520b7376ada4a16be08621aef639a50638 100644
 | 
| --- a/pkg/compiler/lib/src/compiler.dart
 | 
| +++ b/pkg/compiler/lib/src/compiler.dart
 | 
| @@ -195,6 +195,7 @@ abstract class Compiler {
 | 
|    final bool enableUserAssertions;
 | 
|    final bool trustTypeAnnotations;
 | 
|    final bool trustPrimitives;
 | 
| +  final bool trustJSInteropTypeAnnotations;
 | 
|    final bool disableTypeInferenceFlag;
 | 
|    final Uri deferredMapUri;
 | 
|    final bool dumpInfo;
 | 
| @@ -430,6 +431,7 @@ abstract class Compiler {
 | 
|              this.enableUserAssertions: false,
 | 
|              this.trustTypeAnnotations: false,
 | 
|              this.trustPrimitives: false,
 | 
| +            this.trustJSInteropTypeAnnotations: false,
 | 
|              bool disableTypeInferenceFlag: false,
 | 
|              this.maxConcreteTypeSize: 5,
 | 
|              this.enableMinification: false,
 | 
| 
 |