 Chromium Code Reviews
 Chromium Code Reviews Issue 10993059:
  Stop using the Hashable interface.  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
    
  
    Issue 10993059:
  Stop using the Hashable interface.  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart| Index: lib/compiler/implementation/constants.dart | 
| diff --git a/lib/compiler/implementation/constants.dart b/lib/compiler/implementation/constants.dart | 
| index d9f2d48ed8b90625cb98e388747931698a3ed1f5..866f543e41b615f32b41eef0a2a8b7893b2b9261 100644 | 
| --- a/lib/compiler/implementation/constants.dart | 
| +++ b/lib/compiler/implementation/constants.dart | 
| @@ -16,7 +16,7 @@ abstract class ConstantVisitor<R> { | 
| R visitConstructed(ConstructedConstant constant); | 
| } | 
| -class Constant implements Hashable { | 
| +class Constant { | 
| 
Lasse Reichstein Nielsen
2012/09/27 12:42:36
Whoops, double space. Will fix.
 
Mads Ager (google)
2012/09/27 12:48:27
Remove extra space before '{'.
 | 
| const Constant(); | 
| bool isNull() => false; |