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