Chromium Code Reviews| 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; |
|
jimhug
2011/11/07 16:41:26
Darn. I was hoping we could pretend these just di
|
| + 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); |