create_enum_stmt.go 130 B

12345678910
  1. package ast
  2. type CreateEnumStmt struct {
  3. TypeName *TypeName
  4. Vals *List
  5. }
  6. func (n *CreateEnumStmt) Pos() int {
  7. return 0
  8. }