remove Jump/Label from mono::Expr

This commit is contained in:
Folkert 2020-03-24 00:11:02 +01:00
parent 958f3f9ad4
commit 39fb78b2d5
3 changed files with 10 additions and 9 deletions

View file

@ -201,9 +201,6 @@ pub enum Expr<'a> {
elems: &'a [Expr<'a>],
},
Label(u64, &'a Expr<'a>),
Jump(u64),
RuntimeError(&'a str),
}