string.go 90 B

123456789
  1. package ast
  2. type String struct {
  3. Str string
  4. }
  5. func (n *String) Pos() int {
  6. return 0
  7. }