github.com/tul/gopher-lua@v0.0.0-20181008131706-f6fcaab0c612/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 }