| Index: lib/config.dart
|
| diff --git a/lib/config.dart b/lib/config.dart
|
| index 65d4a2064dc7ea6402c0d58e6945e7cabbd58646..921e368129a704d376752dcc08d8679df603969c 100644
|
| --- a/lib/config.dart
|
| +++ b/lib/config.dart
|
| @@ -8,7 +8,7 @@ library ddc.config;
|
| // Options shared by the compiler and runtime.
|
| class TypeOptions {
|
| static const NONNULLABLE_TYPES = const <String>['int', 'double'];
|
| - final nonnullableTypes;
|
| + final List<String> nonnullableTypes;
|
|
|
| TypeOptions({this.nonnullableTypes: NONNULLABLE_TYPES});
|
| }
|
|
|