placeholders in the wasm code

This commit is contained in:
Folkert 2022-03-09 00:04:23 +01:00
parent 6543c9bbc6
commit 574f14522d
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -594,6 +594,10 @@ impl<'a> WasmBackend<'a> {
index,
} => self.expr_union_at_index(*structure, *tag_id, union_layout, *index, sym),
Expr::ExprBox { .. } | Expr::ExprUnbox { .. } => {
todo!("Expression `{}`", expr.to_pretty(100))
}
Expr::Reuse { .. } | Expr::Reset { .. } | Expr::RuntimeErrorFunction(_) => {
todo!("Expression `{}`", expr.to_pretty(100))
}