res_target.go 94 B

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