blob: d83c6c98c7d103e7400c8d142d05e2588a237fed [file]
package govaluate
/*
Represents a single parsed token.
*/
type ExpressionToken struct {
Kind TokenKind
Value interface{}
}