NewSequenceNode returns a new node pointing to a yaml list.
()
| 18 | |
| 19 | // NewSequenceNode returns a new node pointing to a yaml list. |
| 20 | func NewSequenceNode() *Node { |
| 21 | return &Node{ |
| 22 | &yaml.Node{Kind: yaml.SequenceNode}, |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | // ScalarTag represents the type hints used by yaml. These come from the yaml |
| 27 | // source. |
no outgoing calls
no test coverage detected