list.go 88 B

123456789
  1. package ast
  2. type List struct {
  3. Items []Node
  4. }
  5. func (n *List) Pos() int {
  6. return 0
  7. }