(id int64, message string, err error)
| 367 | } |
| 368 | |
| 369 | func wrapErr(id int64, message string, err error) *common.Error { |
| 370 | return &common.Error{ |
| 371 | Location: common.NoLocation, |
| 372 | Message: fmt.Sprintf("%s: %v", message, err), |
| 373 | ExprID: id, |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | type adaptingHelper struct { |
| 378 | modernHelper parser.ExprHelper |
no outgoing calls
no test coverage detected