(&mut self, look: EmptyLook)
| 449 | } |
| 450 | |
| 451 | fn c_empty_look(&mut self, look: EmptyLook) -> Result { |
| 452 | let hole = self.push_hole(InstHole::EmptyLook { look: look }); |
| 453 | Ok(Patch { hole: hole, entry: self.insts.len() - 1 }) |
| 454 | } |
| 455 | |
| 456 | fn c_concat<'a, I>(&mut self, exprs: I) -> Result |
| 457 | where I: IntoIterator<Item=&'a Hir> { |