@@ -24,16 +24,16 @@ EM_JS(c2wasm_js_var, c2wasm_call_var, (c2wasm_js_var stack_index, c2wasm_js_var
2424 result = error ;
2525 }
2626
27- if (result == false){
27+ if (result == = false){
2828 return window .c2wasm_false ;
2929 }
30- if (result == true){
30+ if (result == = true){
3131 return window .c2wasm_true ;
3232 }
33- if (result == null ){
33+ if (result == = null ){
3434 return window .c2wasm_null ;
3535 }
36- if (result == undefined ){
36+ if (result == = undefined ){
3737 return window .c2wasm_undefined ;
3838 }
3939 let created_index = window .c2wasm_get_stack_point ();
@@ -62,16 +62,16 @@ EM_ASYNC_JS(c2wasm_js_var, await_c2wasm_call_var, (c2wasm_js_var stack_index, c2
6262 result = error ;
6363 }
6464
65- if (result == false){
65+ if (result == = false){
6666 return window .c2wasm_false ;
6767 }
68- if (result == true){
68+ if (result == = true){
6969 return window .c2wasm_true ;
7070 }
71- if (result == null ){
71+ if (result == = null ){
7272 return window .c2wasm_null ;
7373 }
74- if (result == undefined ){
74+ if (result == = undefined ){
7575 return window .c2wasm_undefined ;
7676 }
7777 let created_index = window .c2wasm_get_stack_point ();
@@ -100,16 +100,16 @@ EM_JS(c2wasm_js_var, c2wasm_call_var_constructor, (c2wasm_js_var stack_index, c2
100100 result = error ;
101101 }
102102
103- if (result == false){
103+ if (result == = false){
104104 return window .c2wasm_false ;
105105 }
106- if (result == true){
106+ if (result == = true){
107107 return window .c2wasm_true ;
108108 }
109- if (result == null ){
109+ if (result == = null ){
110110 return window .c2wasm_null ;
111111 }
112- if (result == undefined ){
112+ if (result == = undefined ){
113113 return window .c2wasm_undefined ;
114114 }
115115 let created_index = window .c2wasm_get_stack_point ();
@@ -138,16 +138,16 @@ EM_ASYNC_JS(c2wasm_js_var, await_c2wasm_call_var_constructor, (c2wasm_js_var sta
138138 result = error ;
139139 }
140140
141- if (result == false){
141+ if (result == = false){
142142 return window .c2wasm_false ;
143143 }
144- if (result == true){
144+ if (result == = true){
145145 return window .c2wasm_true ;
146146 }
147- if (result == null ){
147+ if (result == = null ){
148148 return window .c2wasm_null ;
149149 }
150- if (result == undefined ){
150+ if (result == = undefined ){
151151 return window .c2wasm_undefined ;
152152 }
153153 let created_index = window .c2wasm_get_stack_point ();
0 commit comments