Change `Node.Mapping.pairs` and `Node.Sequence.nodes` to internal
This commit is contained in:
parent
f30798d6e6
commit
5e3c6be8e3
|
@ -59,7 +59,7 @@ extension Node {
|
|||
}
|
||||
|
||||
public struct Mapping {
|
||||
public var pairs: [Pair<Node>]
|
||||
internal var pairs: [Pair<Node>]
|
||||
public var tag: Tag
|
||||
public var style: Style
|
||||
|
||||
|
@ -88,7 +88,7 @@ extension Node {
|
|||
}
|
||||
|
||||
public struct Sequence {
|
||||
public var nodes: [Node]
|
||||
internal var nodes: [Node]
|
||||
public var tag: Tag
|
||||
public var style: Style
|
||||
|
||||
|
|
Loading…
Reference in New Issue