github.com/coinstack/gopher-lua@v0.0.0-20180626044619-c9c62d4ee45e/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  }