(val value.Value)
| 849 | } |
| 850 | |
| 851 | func NewValueNode(val value.Value) *ValueNode { |
| 852 | return &ValueNode{Value: val, rv: reflect.ValueOf(val)} |
| 853 | } |
| 854 | func (m *ValueNode) NodeType() string { return "Value" } |
| 855 | func (m *ValueNode) IsArray() bool { |
| 856 | if m.Value == nil { |