revert debug flags

This commit is contained in:
Folkert 2023-06-21 01:26:33 +02:00
parent f797b59d82
commit 2332ec3133
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
3 changed files with 3 additions and 28 deletions

View file

@ -1970,7 +1970,7 @@ impl<'a, 'r> WasmBackend<'a, 'r> {
* Box
*******************************************************************/
pub(crate) fn expr_box(
pub fn expr_box(
&mut self,
ret_sym: Symbol,
arg_sym: Symbol,

View file

@ -249,7 +249,7 @@ pub const DEBUG_SETTINGS: WasmDebugSettings = WasmDebugSettings {
let_stmt_ir: false && cfg!(debug_assertions),
instructions: false && cfg!(debug_assertions),
storage_map: false && cfg!(debug_assertions),
keep_test_binary: true && cfg!(debug_assertions), // see also ROC_WRITE_FINAL_WASM
keep_test_binary: false && cfg!(debug_assertions), // see also ROC_WRITE_FINAL_WASM
};
#[cfg(test)]