(_ ValueInterface)
| 141 | } |
| 142 | |
| 143 | func (value NullValue) isGreaterThan(_ ValueInterface) bool { |
| 144 | return false |
| 145 | } |
| 146 | |
| 147 | func areEqual(first ValueInterface, second ValueInterface) bool { |
| 148 | return first.GetType() == second.GetType() && first.ToString() == second.ToString() |
no outgoing calls