 Chromium Code Reviews
 Chromium Code Reviews Issue 57703004:
  Constant fold strict comparison based on incoming types: different (exact) types means that the res…  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
    
  
    Issue 57703004:
  Constant fold strict comparison based on incoming types: different (exact) types means that the res…  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/| Index: runtime/lib/integers.dart | 
| =================================================================== | 
| --- runtime/lib/integers.dart (revision 30082) | 
| +++ runtime/lib/integers.dart (working copy) | 
| @@ -289,7 +289,7 @@ | 
| } | 
| // Reusable buffer used by smi.toString. | 
| -List _toStringBuffer = new Uint8List(20); | 
| +final List _toStringBuffer = new Uint8List(20); | 
| // Represents integers that cannot be represented by Smi but fit into 64bits. | 
| class _Mint extends _IntegerImplementation implements int { |