Implement return keyword

This commit is contained in:
Sam Mohr 2024-10-20 04:50:12 -07:00
parent 20a539a96d
commit b3e60f9d3a
No known key found for this signature in database
GPG key ID: EA41D161A3C1BC99
39 changed files with 594 additions and 80 deletions

View file

@ -3425,6 +3425,7 @@ pub enum Reason {
},
CrashArg,
ImportParams(ModuleId),
Return,
}
#[derive(PartialEq, Eq, Debug, Clone)]
@ -3474,6 +3475,7 @@ pub enum Category {
Expect,
Dbg,
Return,
Unknown,
}