mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
30 lines
945 B
Go
30 lines
945 B
Go
package yqlib
|
|
|
|
import (
|
|
"container/list"
|
|
"fmt"
|
|
)
|
|
|
|
func getVariableOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
variableName := expressionNode.Operation.StringValue
|
|
log.Debug("getVariableOperator %v", variableName)
|
|
result := context.GetVariable(variableName)
|
|
if result == nil {
|
|
result = list.New()
|
|
}
|
|
return context.ChildContext(result), nil
|
|
}
|
|
|
|
func assignVariableOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
|
|
lhs, err := d.GetMatchingNodes(context.ReadOnlyClone(), expressionNode.Lhs)
|
|
if err != nil {
|
|
return Context{}, nil
|
|
}
|
|
if expressionNode.Rhs.Operation.OperationType.Type != "GET_VARIABLE" {
|
|
return Context{}, fmt.Errorf("RHS of 'as' operator must be a variable name e.g. $foo")
|
|
}
|
|
variableName := expressionNode.Rhs.Operation.StringValue
|
|
context.SetVariable(variableName, lhs.MatchingNodes)
|
|
return context, nil
|
|
}
|