github.com/assemblaj/gopher-lua@v0.0.0-20221116224352-d57295a0d9e8/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 }