Compare commits
6 Commits
v0.3.5
..
ff03ee922d
| Author | SHA1 | Date | |
|---|---|---|---|
| ff03ee922d | |||
| 868786cb9f | |||
| 3e964d1455 | |||
| 530eff87e9 | |||
| c3339a2cdb | |||
| 5e3171d891 |
+3
-17
@@ -1,31 +1,17 @@
|
|||||||
// Package lexer provides basic helpers to implement parsers
|
// Package lexer provides basic helpers to implement parsers
|
||||||
package lexer
|
package lexer
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"io"
|
|
||||||
)
|
|
||||||
|
|
||||||
// StateFn is a State Function of the parser
|
// StateFn is a State Function of the parser
|
||||||
type StateFn func() (StateFn, error)
|
type StateFn func() (StateFn, error)
|
||||||
|
|
||||||
// Run runs a state machine until the state function either
|
// Run runs a state machine until the state function either
|
||||||
// returns nil or an error
|
// returns nil or an error
|
||||||
func Run(fn StateFn) error {
|
func Run(fn StateFn) error {
|
||||||
for fn != nil {
|
var err error
|
||||||
var err error
|
|
||||||
|
|
||||||
|
for fn != nil && err == nil {
|
||||||
fn, err = fn()
|
fn, err = fn()
|
||||||
switch {
|
|
||||||
case errors.Is(err, io.EOF):
|
|
||||||
// EOF
|
|
||||||
return nil
|
|
||||||
case err != nil:
|
|
||||||
// failed
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ended
|
return err
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
+13
-11
@@ -41,26 +41,28 @@ func (p *Position) Step() {
|
|||||||
p.Column++
|
p.Column++
|
||||||
}
|
}
|
||||||
|
|
||||||
// StepN moves the column N places forward
|
// Next returns a new Position one rune forward
|
||||||
func (p *Position) StepN(n int) {
|
// on the line
|
||||||
|
func (p Position) Next() Position {
|
||||||
if p.Line == 0 {
|
if p.Line == 0 {
|
||||||
p.Reset()
|
p.Reset()
|
||||||
}
|
}
|
||||||
|
|
||||||
switch {
|
return Position{
|
||||||
case n > 0:
|
Line: p.Line,
|
||||||
p.Column += n
|
Column: p.Column + 1,
|
||||||
default:
|
|
||||||
panic(fmt.Errorf("invalid %v increment", n))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// StepLine moves position to the start of the next line
|
// NextLine returns a new Position at the begining of the next
|
||||||
func (p *Position) StepLine() {
|
// line.
|
||||||
|
func (p Position) NextLine() Position {
|
||||||
if p.Line == 0 {
|
if p.Line == 0 {
|
||||||
p.Reset()
|
p.Reset()
|
||||||
}
|
}
|
||||||
|
|
||||||
p.Line++
|
return Position{
|
||||||
p.Column = 1
|
Line: p.Line + 1,
|
||||||
|
Column: 1,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user