Versions in this module Expand all Collapse all v0 v0.2.0 Apr 16, 2019 Changes in this version + type Lexer struct + func New(source string) *Lexer + func (l *Lexer) Next() bool + func (l *Lexer) Peek() (token *Token) + func (l *Lexer) Scan() *Token + type Token struct + Type TokenType + Value string + type TokenType int + const Asterisk + const Backslash + const Bracket + const Caret + const Dash + const Plus + const Text