OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library yaml.visitor; | |
6 | |
7 import 'equality.dart'; | |
8 import 'model.dart'; | |
9 | |
10 /// The visitor pattern for YAML documents. | |
11 class Visitor { | |
12 /// Returns [alias]. | |
13 visitAlias(AliasNode alias) => alias; | |
14 | |
15 /// Returns [scalar]. | |
16 visitScalar(ScalarNode scalar) => scalar; | |
17 | |
18 /// Visits each node in [seq] and returns a list of the results. | |
19 visitSequence(SequenceNode seq) | |
20 => seq.content.map((e) => e.visit(this)).toList(); | |
21 | |
22 /// Visits each key and value in [map] and returns a map of the results. | |
23 visitMapping(MappingNode map) { | |
24 var out = deepEqualsMap(); | |
25 for (var key in map.content.keys) { | |
26 out[key.visit(this)] = map.content[key].visit(this); | |
27 } | |
28 return out; | |
29 } | |
30 } | |
OLD | NEW |