2022-06-25 02:46:24 +00:00
|
|
|
package yqlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
func errorOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
|
|
|
|
|
|
log.Debugf("-- errorOperation")
|
|
|
|
|
|
|
|
rhs, err := d.GetMatchingNodes(context.ReadOnlyClone(), expressionNode.RHS)
|
|
|
|
if err != nil {
|
|
|
|
return Context{}, err
|
|
|
|
}
|
|
|
|
errorMessage := "aborted"
|
|
|
|
if rhs.MatchingNodes.Len() > 0 {
|
2023-10-18 01:11:53 +00:00
|
|
|
errorMessage = rhs.MatchingNodes.Front().Value.(*CandidateNode).Value
|
2022-06-25 02:46:24 +00:00
|
|
|
}
|
|
|
|
return Context{}, fmt.Errorf(errorMessage)
|
|
|
|
}
|