mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
wasm: More explicit todo! statements
This commit is contained in:
parent
5661d281c6
commit
4b585cc6c6
1 changed files with 16 additions and 1 deletions
|
@ -578,7 +578,22 @@ impl<'a> WasmBackend<'a> {
|
|||
index,
|
||||
} => self.expr_union_at_index(*structure, *tag_id, union_layout, *index, sym),
|
||||
|
||||
_ => todo!("Expression `{}`", expr.to_pretty(100)),
|
||||
Expr::Reuse {
|
||||
symbol: _,
|
||||
update_tag_id: _,
|
||||
update_mode: _,
|
||||
tag_layout: _,
|
||||
tag_name: _,
|
||||
tag_id: _,
|
||||
arguments: _,
|
||||
} => todo!("Expression `{}`", expr.to_pretty(100)),
|
||||
|
||||
Expr::Reset {
|
||||
symbol: _,
|
||||
update_mode: _,
|
||||
} => todo!("Expression `{}`", expr.to_pretty(100)),
|
||||
|
||||
Expr::RuntimeErrorFunction(_) => todo!("Expression `{}`", expr.to_pretty(100)),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue