(&mut self, message: &str)
| 1810 | } |
| 1811 | |
| 1812 | fn error(&mut self, message: &str) { |
| 1813 | if self.error_reporter.had_error { |
| 1814 | return; |
| 1815 | } |
| 1816 | self.error_reporter.had_error = true; |
| 1817 | eprintln!("[line {}] Error: {}", self.current_line, message); |
| 1818 | } |
| 1819 | |
| 1820 | fn error_at_value(&mut self, value: Value<'gc>, message: &str) { |
| 1821 | if self.error_reporter.had_error { |
no outgoing calls
no test coverage detected