Chromium Code Reviews| Index: dart/frog/leg/lib/js_helper.dart |
| diff --git a/dart/frog/leg/lib/js_helper.dart b/dart/frog/leg/lib/js_helper.dart |
| index ca78471a909b3163ed3598c2f1b89b0d453dd6d8..b03ecf42f27a2cde14eb3e24070a02f09a680e02 100644 |
| --- a/dart/frog/leg/lib/js_helper.dart |
| +++ b/dart/frog/leg/lib/js_helper.dart |
| @@ -1360,6 +1360,9 @@ interface Dynamic { |
| */ |
| class Null { |
| factory Null() { |
| - throw UnsupportedOperationException('new Null()'); |
| + throw new UnsupportedOperationException('new Null()'); |
| } |
| } |
| + |
| +// TODO(ahe): We should automatically generate these. |
|
ngeoffray
2012/03/26 08:47:32
Just talked with Lasse about this. It's not so tri
ahe
2012/03/26 09:24:57
I have removed the TODO for now and continued the
|
| +builtin$get$toString(receiver) => () => builtin$toString$0(receiver); |