Documentation
¶
Index ¶
- Constants
- func IsAlpha(r rune) bool
- func IsDigit(r rune) bool
- func IsEndOfLine(r rune) bool
- func IsSpace(r rune) bool
- type Lexer
- func (l *Lexer) Accept(valid string) bool
- func (l *Lexer) AcceptAlpha()
- func (l *Lexer) AcceptDigits()
- func (l *Lexer) AcceptRun(valid string)
- func (l *Lexer) AcceptSequence(sequence string) bool
- func (l *Lexer) Backup()
- func (l *Lexer) CurrentInput() string
- func (l *Lexer) Emit(tokenType TokenType)
- func (l *Lexer) Errorf(format string, args ...interface{}) StateFn
- func (l *Lexer) Ignore()
- func (l *Lexer) IgnoreWhitespace()
- func (l *Lexer) Next() (r rune)
- func (l *Lexer) NextToken() Token
- func (l *Lexer) Peek() rune
- type StateFn
- type Token
- type TokenType
Constants ¶
View Source
const ( ILLEGAL = "ILLEGAL" EOF = "EOF" )
Variables ¶
This section is empty.
Functions ¶
func IsEndOfLine ¶
Types ¶
type Lexer ¶
type Lexer struct {
// contains filtered or unexported fields
}
func (*Lexer) AcceptAlpha ¶
func (l *Lexer) AcceptAlpha()
func (*Lexer) AcceptDigits ¶
func (l *Lexer) AcceptDigits()
func (*Lexer) AcceptSequence ¶
func (*Lexer) CurrentInput ¶
func (*Lexer) IgnoreWhitespace ¶
func (l *Lexer) IgnoreWhitespace()
type Token ¶
func (*Token) TokenLiteral ¶
Click to show internal directories.
Click to hide internal directories.