mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
13d1bbb45f
Remove dependency on yaml.Node for internal AST representation. Yaml decoder is now just another decoder.
16 lines
405 B
Go
16 lines
405 B
Go
package yqlib
|
|
|
|
func splitDocumentOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
log.Debugf("-- splitDocumentOperator")
|
|
|
|
var index uint
|
|
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
|
|
candidate := el.Value.(*CandidateNode)
|
|
candidate.SetDocument(index)
|
|
candidate.SetParent(nil)
|
|
index = index + 1
|
|
}
|
|
|
|
return context, nil
|
|
}
|