statement.go 98 B

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