| 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 /** |
| 6 * Takes a parsed and composed YAML document (what the spec calls the |
| 7 * "representation graph") and creates native Dart objects that represent that |
| 8 * document. |
| 9 */ |
| 10 class _Constructor extends _Visitor { |
| 11 /** The root node of the representation graph. */ |
| 12 _Node _root; |
| 13 |
| 14 /** Map from anchor names to the most recent Dart node with that anchor. */ |
| 15 Map<String, Dynamic> _anchors; |
| 16 |
| 17 _Constructor(_Node this._root) : this._anchors = {}; |
| 18 |
| 19 /** Runs the Constructor to produce a Dart object. */ |
| 20 construct() => _root.visit(this); |
| 21 |
| 22 /** Returns the value of a scalar. */ |
| 23 visitScalar(_ScalarNode scalar) => scalar.value; |
| 24 |
| 25 /** Converts a sequence into a List of Dart objects. */ |
| 26 visitSequence(_SequenceNode seq) { |
| 27 var anchor = _getAnchor(seq); |
| 28 if (anchor != null) return anchor; |
| 29 var dartSeq = _setAnchor(seq, []); |
| 30 dartSeq.addAll(super.visitSequence(seq)); |
| 31 return dartSeq; |
| 32 } |
| 33 |
| 34 /** Converts a mapping into a Map of Dart objects. */ |
| 35 visitMapping(_MappingNode map) { |
| 36 var anchor = _getAnchor(map); |
| 37 if (anchor != null) return anchor; |
| 38 var dartMap = _setAnchor(map, new YamlMap()); |
| 39 super.visitMapping(map).forEach((k, v) { dartMap[k] = v; }); |
| 40 return dartMap; |
| 41 } |
| 42 |
| 43 /** |
| 44 * Returns the Dart object that already represents [anchored], if such a thing |
| 45 * exists. |
| 46 */ |
| 47 _getAnchor(_Node anchored) { |
| 48 if (anchored.anchor == null) return null; |
| 49 if (_anchors.containsKey(anchored.anchor)) return _anchors[anchored.anchor]; |
| 50 } |
| 51 |
| 52 /** Records that [value] is the Dart object representing [anchored]. */ |
| 53 _setAnchor(_Node anchored, value) { |
| 54 if (anchored.anchor == null) return value; |
| 55 _anchors[anchored.anchor] = value; |
| 56 return value; |
| 57 } |
| 58 } |
| OLD | NEW |