Sequence Node
class SequenceNode @JvmOverloads constructor(tag: Tag, val value: List<Node>, flowStyle: FlowStyle, resolved: Boolean = true, startMark: Mark? = null, endMark: Mark? = null) : CollectionNode<Node>
Represents a sequence.
A sequence is an ordered collection of nodes.
Parameters
value
the Nodes in this sequence, in the specified order
Properties
Link copied to clipboard
The ordered list of blank lines and block comments (full line) that appear before this node.
Link copied to clipboard
The ordered list of blank lines and block comments (full line) that appear AFTER this node.
Link copied to clipboard
The ordered list of in-line comments. The first of which appears at the end of the line represented by this node. The rest are in the following lines, indented per the Spec to indicate they are continuation of the inline comment.
Link copied to clipboard
Indicates if this node must be constructed in two steps.