ValueNode holds a value.Value type value.Values can be strings, numbers, arrays, objects, etc
| 246 | // ValueNode holds a value.Value type |
| 247 | // value.Values can be strings, numbers, arrays, objects, etc |
| 248 | ValueNode struct { |
| 249 | Value value.Value |
| 250 | rv reflect.Value |
| 251 | } |
| 252 | |
| 253 | // BinaryNode is x op y, two nodes (left, right) and an operator |
| 254 | // operators can be a variety of: |
nothing calls this directly
no outgoing calls
no test coverage detected