misc.go 191 B

1234567891011121314151617
  1. package ast
  2. type Field struct {
  3. Key Expr
  4. Value Expr
  5. }
  6. type ParList struct {
  7. HasVargs bool
  8. Names []string
  9. }
  10. type FuncName struct {
  11. Func Expr
  12. Receiver Expr
  13. Method string
  14. }