Browse Source

lexer: introduce StateFn and the basic state machine loop

Signed-off-by: Alejandro Mery <amery@jpi.io>
Alejandro Mery 1 year ago
parent
commit
15938090f6
  1. 15
      lexer/lexer.go

15
lexer/lexer.go

@ -1,2 +1,17 @@
// Package lexer provides basic helpers to implement parsers
package lexer
// StateFn is a State Function of the parser
type StateFn func() (StateFn, error)
// Run runs a state machine until the state function either
// returns nil or an error
func Run(fn StateFn) error {
var err error
for fn != nil && err == nil {
fn, err = fn()
}
return err
}

Loading…
Cancel
Save