github.com/mdogan/gopher-lua@v0.2.0/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  }