ledisdb/vendor/github.com/yuin/gopher-lua/ast/misc.go

18 lines
191 B
Go
Raw Normal View History

2017-04-15 16:51:03 +03:00
package ast
type Field struct {
Key Expr
Value Expr
}
type ParList struct {
HasVargs bool
Names []string
}
type FuncName struct {
Func Expr
Receiver Expr
Method string
}