()
| 191 | |
| 192 | func (n *Node) AsNode() *Node { return n } |
| 193 | func (n *Node) Pos() int { return n.Loc.Pos() } |
| 194 | func (n *Node) End() int { return n.Loc.End() } |
| 195 | func (n *Node) IterChildren() iter.Seq[*Node] { |
| 196 | // Implemented directly (rather than through the nodeData interface) so that the |
no test coverage detected