| Index: sdk/lib/_internal/compiler/implementation/lib/js_number.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/lib/js_number.dart b/sdk/lib/_internal/compiler/implementation/lib/js_number.dart
|
| index 76673aea07d7838603e90931a98a36cf50b3baff..e8e57508c6e0d89c03385691bcbea9629118b4b9 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/lib/js_number.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/lib/js_number.dart
|
| @@ -128,10 +128,10 @@ class JSInt extends JSNumber {
|
|
|
| bool get isOdd => (this & 1) == 1;
|
|
|
| - Type get runtimeType => createRuntimeType('int');
|
| + Type get runtimeType => int;
|
| }
|
|
|
| class JSDouble extends JSNumber {
|
| const JSDouble();
|
| - Type get runtimeType => createRuntimeType('double');
|
| + Type get runtimeType => double;
|
| }
|
|
|