Returns this error's message without the source position prefix.
(&self)
| 177 | |
| 178 | /// Returns this error's message without the source position prefix. |
| 179 | pub fn message_without_pos(&self) -> String { |
| 180 | self.split_display_message().1 |
| 181 | } |
| 182 | |
| 183 | /// Annotates an invalid `END` exit code error with a source position. |
| 184 | fn from_bytecode_invalid_exit_code(value: InvalidExitCodeError, pos: LineCol) -> Self { |
no test coverage detected