Remove commented code

This commit is contained in:
Brandon Dyck 2024-09-11 10:27:43 -06:00
parent d0460e71e3
commit 570d7e32fc

View File

@ -78,12 +78,6 @@ func MessageOK(pos uint64) Message { return Message{Pos: pos} }
func MessageEnd(pos uint64) Message { return Message{Pos: pos, Got: "end of input"} }
// type ParseError Message
// func (pe ParseError) Error() string {
// return fmt.Sprintf("parse error: %d: %s", pe.Pos, pe.Got)
// }
func MakeState[In any](c cursor.Cursor[In]) State[In] {
return State[In]{cursor: c}
}