mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 11:00:58 +00:00
10 lines
128 B
Go
10 lines
128 B
Go
|
package govaluate
|
||
|
|
||
|
/*
|
||
|
Represents a single parsed token.
|
||
|
*/
|
||
|
type ExpressionToken struct {
|
||
|
Kind TokenKind
|
||
|
Value interface{}
|
||
|
}
|