Versions in this module Expand all Collapse all v0 v0.1.1 Oct 2, 2024 v0.1.0 Oct 1, 2024 Changes in this version + type Lexer struct + func NewLexer(prefix rune, allowed_verbs []rune) *Lexer + func (l *Lexer) Lex() error + func (l *Lexer) Reset() + func (l *Lexer) SetInputStream(stream io.RuneScanner) + func (l Lexer) Tokens() []*Token + type Token struct + Data string + IsVerb bool + func NewToken(is_verb bool, data string) *Token