Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(302)

Unified Diff: utils/pub/yaml/model.dart

Issue 10993059: Stop using the Hashable interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: utils/pub/yaml/model.dart
diff --git a/utils/pub/yaml/model.dart b/utils/pub/yaml/model.dart
index a5c9b1a0ac1f26f076b1431b867a4a877900195b..04511a388c914a76c14ebcfaa94198e8ae997fb8 100644
--- a/utils/pub/yaml/model.dart
+++ b/utils/pub/yaml/model.dart
@@ -7,7 +7,7 @@
// representation graph.
/** A tag that indicates the type of a YAML node. */
-class _Tag implements Hashable {
+class _Tag {
Mads Ager (google) 2012/09/27 12:48:27 hep
// TODO(nweiz): it would better match the semantics of the spec if there were
// a singleton instance of this class for each tag.
@@ -50,7 +50,7 @@ class _Tag implements Hashable {
}
/** The abstract class for YAML nodes. */
-class _Node implements Hashable {
+class _Node {
Mads Ager (google) 2012/09/27 12:48:27 hep
/** Every YAML node has a tag that describes its type. */
_Tag tag;

Powered by Google App Engine
This is Rietveld 408576698