(self)
| 340 | } |
| 341 | |
| 342 | pub(crate) fn into_exprs(self) -> HashMap<String, Expr> { |
| 343 | self.names |
| 344 | .into_iter() |
| 345 | .map(|(k, v)| (k, *v.kind.into_expr().unwrap())) |
| 346 | .collect() |
| 347 | } |
| 348 | |
| 349 | pub(crate) fn from_exprs(exprs: HashMap<String, Expr>) -> Module { |
| 350 | Module { |
no test coverage detected