(
&mut self,
p: &ast::PatternMatchStar,
pc: &mut PatternContext,
)
| 6189 | } |
| 6190 | |
| 6191 | fn compile_pattern_star( |
| 6192 | &mut self, |
| 6193 | p: &ast::PatternMatchStar, |
| 6194 | pc: &mut PatternContext, |
| 6195 | ) -> CompileResult<()> { |
| 6196 | self.pattern_helper_store_name(p.name.as_ref(), pc)?; |
| 6197 | Ok(()) |
| 6198 | } |
| 6199 | |
| 6200 | /// Validates that keyword attributes in a class pattern are allowed |
| 6201 | /// and not duplicated. |
no test coverage detected