github.com/cathalgarvey/gopher-lua@v0.0.0-20160120144859-d37748000dc5/ast/misc.go (about)

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