1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-17 08:33:32 +00:00
Beego/vendor/github.com/Knetic/govaluate/ExpressionToken.go

10 lines
128 B
Go
Raw Normal View History

2018-07-30 04:05:51 +00:00
package govaluate
/*
Represents a single parsed token.
*/
type ExpressionToken struct {
Kind TokenKind
Value interface{}
}