StringValue - Implementation of ValueInterface that is containing string values
| 31 | |
| 32 | // StringValue - Implementation of ValueInterface that is containing string values |
| 33 | type StringValue struct { |
| 34 | Value string |
| 35 | } |
| 36 | |
| 37 | // NullValue - Implementation of ValueInterface that is containing null |
| 38 | type NullValue struct { |
nothing calls this directly
no outgoing calls
no test coverage detected