5 lines
164 B
Go
5 lines
164 B
Go
|
package unilex
|
||
|
|
||
|
// StateFunc represents function that scans lexems and returns new state function or nil if lexing completed.
|
||
|
type StateFunc func(*Lexer) StateFunc
|