File tree 6 files changed +568
-15
lines changed
6 files changed +568
-15
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ executable agda2lambox
20
20
other-modules : Agda.Utils,
21
21
Agda.Utils.EliminateDefaults,
22
22
Agda.Utils.EtaExpandConstructors,
23
+ Agda.Utils.Simplify,
23
24
Agda.Utils.Treeless,
24
25
Agda2Lambox.Compile.Target,
25
26
Agda2Lambox.Compile.Utils,
Original file line number Diff line number Diff line change @@ -102,13 +102,21 @@ <h1>agda2lambox</h1>
102
102
async function exec ( ) {
103
103
log ( "Running main_function()" )
104
104
105
- wasm . exports . main_function ( )
105
+ try {
106
+ wasm . exports . main_function ( )
106
107
107
- mem = new Uint32Array ( wasm . exports . memory . buffer )
108
- let res = wasm . exports . result . value
109
- let dec = decoders [ decoder . value ]
110
- // mem = new Uint32Array(wasm.exports.memory.buffer)
111
- log ( `Result: ${ pretty ( dec ( res ) ) } ` )
108
+ mem = new Uint32Array ( wasm . exports . memory . buffer )
109
+ let res = wasm . exports . result . value
110
+ let dec = decoders [ decoder . value ]
111
+ // mem = new Uint32Array(wasm.exports.memory.buffer)
112
+ log ( `Result: ${ pretty ( dec ( res ) ) } ` )
113
+ } catch ( e ) {
114
+ log ( `Failed to run: ${ e } ` , true )
115
+ if ( wasm . exports . out_of_mem . value ) {
116
+ log ( `Wasm instance may have run out of memory...` , true )
117
+ }
118
+ throw e
119
+ }
112
120
}
113
121
114
122
function log ( str , err = false ) { // ugly logging
You can’t perform that action at this time.
0 commit comments