IsEqual implementations
(valueInterface ValueInterface)
| 64 | |
| 65 | // IsEqual implementations |
| 66 | func (value IntegerValue) IsEqual(valueInterface ValueInterface) bool { |
| 67 | return areEqual(value, valueInterface) |
| 68 | } |
| 69 | func (value StringValue) IsEqual(valueInterface ValueInterface) bool { |
| 70 | return areEqual(value, valueInterface) |
| 71 | } |
nothing calls this directly
no test coverage detected