mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
20 lines
451 B
Go
20 lines
451 B
Go
package yqlib
|
|
|
|
import "container/list"
|
|
|
|
func getParentOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
log.Debugf("-- getParentOperator")
|
|
|
|
var results = list.New()
|
|
|
|
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
|
|
candidate := el.Value.(*CandidateNode)
|
|
if candidate.Parent != nil {
|
|
results.PushBack(candidate.Parent)
|
|
}
|
|
}
|
|
|
|
return context.ChildContext(results), nil
|
|
|
|
}
|