 Chromium Code Reviews
 Chromium Code Reviews Issue 509153003:
  New bigint implementation in the vm.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
    
  
    Issue 509153003:
  New bigint implementation in the vm.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/| Index: runtime/lib/double.dart | 
| =================================================================== | 
| --- runtime/lib/double.dart (revision 40060) | 
| +++ runtime/lib/double.dart (working copy) | 
| @@ -134,6 +134,7 @@ | 
| } | 
| int toInt() native "Double_toInt"; | 
| + _Bigint _toBigint() { return toInt()._toBigint(); } | 
| double toDouble() { return this; } | 
| static const int CACHE_SIZE_LOG2 = 3; |