expose Remaining in UnparsedInputError

This commit is contained in:
Özgür Kesim 2019-06-18 13:14:22 +02:00
parent 16cf31e9e9
commit b9b0f69ccf

View File

@ -17,10 +17,10 @@ func (e *Error) Error() string { return fmt.Sprintf("offset %d: expected %s", e.
// UnparsedInputError is returned by Run when not all of the input was consumed. There may still be a valid result // UnparsedInputError is returned by Run when not all of the input was consumed. There may still be a valid result
type UnparsedInputError struct { type UnparsedInputError struct {
remaining string Remaining string
} }
// Error satisfies the golang error interface // Error satisfies the golang error interface
func (e UnparsedInputError) Error() string { func (e UnparsedInputError) Error() string {
return "left unparsed: " + e.remaining return "left unparsed: " + e.Remaining
} }