mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
Get tests passing
Add roc_dbg to some platforms. Also start updating some roc_panic impls.
This commit is contained in:
parent
e6cc43492a
commit
f5fb01fd53
17 changed files with 191 additions and 47 deletions
|
@ -57,6 +57,14 @@ impl AssemblyBackendMode {
|
|||
AssemblyBackendMode::Repl => true,
|
||||
}
|
||||
}
|
||||
|
||||
fn generate_roc_dbg(self) -> bool {
|
||||
match self {
|
||||
AssemblyBackendMode::Binary => false,
|
||||
AssemblyBackendMode::Test => true,
|
||||
AssemblyBackendMode::Repl => true,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub struct Env<'a> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue