(
&mut self,
s: S,
d: D,
name: &str,
expr: &Expr,
this_id: NodeID,
)
| 71 | where T: Write + Seek |
| 72 | { |
| 73 | pub fn input( |
| 74 | &mut self, |
| 75 | s: S, |
| 76 | d: D, |
| 77 | name: &str, |
| 78 | expr: &Expr, |
| 79 | this_id: NodeID, |
| 80 | ) -> io::Result<()> { |
| 81 | self._input(s, d, name, expr, this_id, None) |
| 82 | } |
| 83 | |
| 84 | pub fn input_with_shadow( |
| 85 | &mut self, |
no test coverage detected