OffsetLocation implements the ExprHelper interface method.
(exprID int64)
| 497 | |
| 498 | // OffsetLocation implements the ExprHelper interface method. |
| 499 | func (e *exprHelper) OffsetLocation(exprID int64) common.Location { |
| 500 | return e.parserHelper.sourceInfo.GetStartLocation(exprID) |
| 501 | } |
| 502 | |
| 503 | // NewError associates an error message with a given expression id, populating the source offset location of the error if possible. |
| 504 | func (e *exprHelper) NewError(exprID int64, message string) *common.Error { |
no test coverage detected