| Index: frog/world.dart
|
| diff --git a/frog/world.dart b/frog/world.dart
|
| index 08c7ec2010298046a152cff94fec324e0d0aab66..540e65d1c6192d84afc702488586f6ab42537933 100644
|
| --- a/frog/world.dart
|
| +++ b/frog/world.dart
|
| @@ -92,6 +92,8 @@ class World {
|
|
|
| Type objectType;
|
| Type numType;
|
| + Type intType;
|
| + Type doubleType;
|
| Type boolType;
|
| Type stringType;
|
| Type listType;
|
| @@ -125,6 +127,8 @@ class World {
|
|
|
| objectType = _addToCoreLib('Object', true);
|
| numType = _addToCoreLib('num', false);
|
| + intType = _addToCoreLib('int', false);
|
| + doubleType = _addToCoreLib('double', false);
|
| boolType = _addToCoreLib('bool', false);
|
| stringType = _addToCoreLib('String', false);
|
| listType = _addToCoreLib('List', false);
|
|
|