IntegerValue - Implementation of ValueInterface that is containing integer values
| 26 | |
| 27 | // IntegerValue - Implementation of ValueInterface that is containing integer values |
| 28 | type IntegerValue struct { |
| 29 | Value int |
| 30 | } |
| 31 | |
| 32 | // StringValue - Implementation of ValueInterface that is containing string values |
| 33 | type StringValue struct { |
nothing calls this directly
no outgoing calls
no test coverage detected