BytesNode represents a byte slice.
| 106 | |
| 107 | // BytesNode represents a byte slice. |
| 108 | type BytesNode struct { |
| 109 | base |
| 110 | Value []byte // Value of the byte slice. |
| 111 | } |
| 112 | |
| 113 | // ConstantNode represents a constant. |
| 114 | // Constants are predefined values like nil, true, false, array, map, etc. |
nothing calls this directly
no outgoing calls
no test coverage detected