(&mut self)
| 1803 | } |
| 1804 | |
| 1805 | fn mark_initialized(&mut self) { |
| 1806 | if self.scope_depth == 0 { |
| 1807 | return; |
| 1808 | } |
| 1809 | self.locals[self.local_count - 1].depth = self.scope_depth; |
| 1810 | } |
| 1811 | |
| 1812 | fn error(&mut self, message: &str) { |
| 1813 | if self.error_reporter.had_error { |
no outgoing calls
no test coverage detected