()
| 42 | } |
| 43 | |
| 44 | func (e parseExpError) Error() string { |
| 45 | return fmt.Sprintf("%s at position %d, token: %q %s", e.mesg, e.t.start, e.t.val, seeDocs) |
| 46 | } |
| 47 | |
| 48 | func newParseExpError(mesg string, t token) error { |
| 49 | return parseExpError{mesg: mesg, t: t} |
no outgoing calls