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

Side by Side 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: Another space removed. Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/pub/version.dart ('k') | utils/pub/yaml/yaml_map.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // This file contains the node classes for the internal representations of YAML 5 // This file contains the node classes for the internal representations of YAML
6 // documents. These nodes are used for both the serialization tree and the 6 // documents. These nodes are used for both the serialization tree and the
7 // representation graph. 7 // representation graph.
8 8
9 /** A tag that indicates the type of a YAML node. */ 9 /** A tag that indicates the type of a YAML node. */
10 class _Tag implements Hashable { 10 class _Tag {
11 // TODO(nweiz): it would better match the semantics of the spec if there were 11 // TODO(nweiz): it would better match the semantics of the spec if there were
12 // a singleton instance of this class for each tag. 12 // a singleton instance of this class for each tag.
13 13
14 static const SCALAR_KIND = 0; 14 static const SCALAR_KIND = 0;
15 static const SEQUENCE_KIND = 1; 15 static const SEQUENCE_KIND = 1;
16 static const MAPPING_KIND = 2; 16 static const MAPPING_KIND = 2;
17 17
18 static const String YAML_URI_PREFIX = 'tag:yaml.org,2002:'; 18 static const String YAML_URI_PREFIX = 'tag:yaml.org,2002:';
19 19
20 /** The name of the tag, either a URI or a local tag beginning with "!". */ 20 /** The name of the tag, either a URI or a local tag beginning with "!". */
(...skipping 22 matching lines...) Expand all
43 return '!!${name.substring(YAML_URI_PREFIX.length)}'; 43 return '!!${name.substring(YAML_URI_PREFIX.length)}';
44 } else { 44 } else {
45 return '!<$name>'; 45 return '!<$name>';
46 } 46 }
47 } 47 }
48 48
49 int hashCode() => name.hashCode(); 49 int hashCode() => name.hashCode();
50 } 50 }
51 51
52 /** The abstract class for YAML nodes. */ 52 /** The abstract class for YAML nodes. */
53 class _Node implements Hashable { 53 class _Node {
54 /** Every YAML node has a tag that describes its type. */ 54 /** Every YAML node has a tag that describes its type. */
55 _Tag tag; 55 _Tag tag;
56 56
57 /** Any YAML node can have an anchor associated with it. */ 57 /** Any YAML node can have an anchor associated with it. */
58 String anchor; 58 String anchor;
59 59
60 _Node(this.tag, [this.anchor]); 60 _Node(this.tag, [this.anchor]);
61 61
62 bool operator ==(other) { 62 bool operator ==(other) {
63 if (other is! _Node) return false; 63 if (other is! _Node) return false;
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 String toString() { 229 String toString() {
230 var strContent = Strings.join(content.getKeys(). 230 var strContent = Strings.join(content.getKeys().
231 map((k) => '${k}: ${content[k]}'), ', '); 231 map((k) => '${k}: ${content[k]}'), ', ');
232 return '$tag {$strContent}'; 232 return '$tag {$strContent}';
233 } 233 }
234 234
235 int hashCode() => super.hashCode() ^ _hashCode(content); 235 int hashCode() => super.hashCode() ^ _hashCode(content);
236 236
237 visit(_Visitor v) => v.visitMapping(this); 237 visit(_Visitor v) => v.visitMapping(this);
238 } 238 }
OLDNEW
« no previous file with comments | « utils/pub/version.dart ('k') | utils/pub/yaml/yaml_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698