| Index: frog/world.dart
|
| diff --git a/frog/world.dart b/frog/world.dart
|
| index 5b652e45f55af552f62c904b32d4bcb58caf8635..74203297ba0f2867af2688a0ecb94dae37dd5300 100644
|
| --- a/frog/world.dart
|
| +++ b/frog/world.dart
|
| @@ -100,6 +100,8 @@ class World {
|
| DefinedType mapType;
|
| DefinedType functionType;
|
|
|
| + NonNullableType nonNullBool;
|
| +
|
| World(this.files)
|
| : libraries = {}, _todo = [], _members = {}, _topNames = {},
|
| // TODO(jmesserly): these two types don't actually back our Date and
|
| @@ -134,6 +136,8 @@ class World {
|
| listType = _addToCoreLib('List', false);
|
| mapType = _addToCoreLib('Map', false);
|
| functionType = _addToCoreLib('Function', false);
|
| +
|
| + nonNullBool = new NonNullableType(boolType);
|
| }
|
|
|
| _addMember(Member member) {
|
|
|