def and def_cx are separated, because Builder has a span associated with what it's currently emitting.
(self, cx: &CodegenCx<'_>)
| 112 | // def and def_cx are separated, because Builder has a span associated with |
| 113 | // what it's currently emitting. |
| 114 | pub fn def_cx(self, cx: &CodegenCx<'_>) -> Word { |
| 115 | self.def_with_span(cx, DUMMY_SP) |
| 116 | } |
| 117 | |
| 118 | pub fn def_with_span(self, cx: &CodegenCx<'_>, span: Span) -> Word { |
| 119 | match self.kind { |
no test coverage detected