mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 09:10:55 +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{}
|
|
}
|