123456789101112131415161718192021222324252627282930313233343536 |
- package govaluate
- type tokenStream struct {
- tokens []ExpressionToken
- index int
- tokenLength int
- }
- func newTokenStream(tokens []ExpressionToken) *tokenStream {
- var ret *tokenStream
- ret = new(tokenStream)
- ret.tokens = tokens
- ret.tokenLength = len(tokens)
- return ret
- }
- func (this *tokenStream) rewind() {
- this.index -= 1
- }
- func (this *tokenStream) next() ExpressionToken {
- var token ExpressionToken
- token = this.tokens[this.index]
- this.index += 1
- return token
- }
- func (this tokenStream) hasNext() bool {
- return this.index < this.tokenLength
- }
|