| 60 | } |
| 61 | bool operator>(const BytecodeVersion &other) const { return other < *this; } |
| 62 | bool operator>=(const BytecodeVersion &other) const { |
| 63 | return !(*this < other); |
| 64 | } |
| 65 | |
| 66 | /// Convert the version to a human-readable string format. |
| 67 | std::string toString() const { |
nothing calls this directly
no outgoing calls
no test coverage detected