Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d8af7821e4 | |||
| 8f3e59ec36 | |||
| d316031c44 | |||
| c3883cbb0d | |||
| 314c004efd |
+3
-14
@@ -4,6 +4,7 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"asciigoat.org/core/lexer"
|
"asciigoat.org/core/lexer"
|
||||||
|
"asciigoat.org/ini/parser"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@@ -11,23 +12,11 @@ var (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func newErrInvalidToken(t *token) *lexer.Error {
|
func newErrInvalidToken(t *token) *lexer.Error {
|
||||||
err := &lexer.Error{
|
return parser.NewError(t.pos, t.value, "", errInvalidToken)
|
||||||
Line: t.pos.Line,
|
|
||||||
Column: t.pos.Column,
|
|
||||||
Content: t.value,
|
|
||||||
Err: errInvalidToken,
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (dec *decoder) OnError(pos lexer.Position, content string, err error) error {
|
func (dec *decoder) OnError(pos lexer.Position, content string, err error) error {
|
||||||
err = &lexer.Error{
|
err = parser.NewError(pos, content, "", err)
|
||||||
Line: pos.Line,
|
|
||||||
Column: pos.Column,
|
|
||||||
Content: content,
|
|
||||||
Err: err,
|
|
||||||
}
|
|
||||||
|
|
||||||
dec.executeFinal()
|
dec.executeFinal()
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,27 @@
|
|||||||
|
package parser
|
||||||
|
|
||||||
|
import (
|
||||||
|
"asciigoat.org/core/lexer"
|
||||||
|
)
|
||||||
|
|
||||||
|
// NewError creates a lexer.Error using a lexer.Position
|
||||||
|
func NewError(pos lexer.Position, content, hint string, err error) *lexer.Error {
|
||||||
|
return &lexer.Error{
|
||||||
|
Line: pos.Line,
|
||||||
|
Column: pos.Column,
|
||||||
|
Content: content,
|
||||||
|
Hint: hint,
|
||||||
|
Err: err,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ErrPlusPosition returns a copy of the given [lexer.Error]
|
||||||
|
// offsetting the Line/Column information.
|
||||||
|
func ErrPlusPosition(pos lexer.Position, e *lexer.Error) *lexer.Error {
|
||||||
|
pos.Add(lexer.Position{
|
||||||
|
Line: e.Line,
|
||||||
|
Column: e.Column,
|
||||||
|
})
|
||||||
|
|
||||||
|
return NewError(pos, e.Content, e.Hint, e.Err)
|
||||||
|
}
|
||||||
+1
-7
@@ -31,13 +31,7 @@ func defaultOnToken(pos lexer.Position, typ TokenType, value string) error {
|
|||||||
func defaultOnError(pos lexer.Position, content string, err error) error {
|
func defaultOnError(pos lexer.Position, content string, err error) error {
|
||||||
log.Printf("%s:%v:%v: %q: %s", "error", pos.Line, pos.Column, content, err)
|
log.Printf("%s:%v:%v: %q: %s", "error", pos.Line, pos.Column, content, err)
|
||||||
|
|
||||||
return lexer.Error{
|
return NewError(pos, content, "", err)
|
||||||
Line: pos.Line,
|
|
||||||
Column: pos.Column,
|
|
||||||
|
|
||||||
Content: content,
|
|
||||||
Err: err,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Parser) setDefaults() {
|
func (p *Parser) setDefaults() {
|
||||||
|
|||||||
Reference in New Issue
Block a user