Chromium Code Reviews| Index: corelib/src/hashable.dart |
| =================================================================== |
| --- corelib/src/hashable.dart (revision 11079) |
| +++ corelib/src/hashable.dart (working copy) |
| @@ -4,6 +4,6 @@ |
| // Dart core library. |
| -interface Hashable { |
| - int hashCode(); |
| +abstract class Hashable { |
| + abstract int hashCode(); |
|
sra1
2012/08/21 18:31:39
I believe this 'abstract' is optional.
It would ce
hausner
2012/08/23 00:25:06
It is, but
1) The VM does not implement this yet
|
| } |