See comment on `BuilderCursor`
(&self)
| 48 | impl<'a, 'tcx> Builder<'a, 'tcx> { |
| 49 | /// See comment on `BuilderCursor` |
| 50 | pub fn emit(&self) -> std::cell::RefMut<'_, rspirv::dr::Builder> { |
| 51 | self.emit_with_cursor(self.cursor) |
| 52 | } |
| 53 | |
| 54 | pub fn zombie(&self, word: Word, reason: &str) { |
| 55 | if let Some(current_span) = self.current_span { |
no test coverage detected