MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

proper err flags

+6 -1
+1 -1
meson.build
··· 75 75 build_date = run_command('date', '+%Y-%m-%d', check: true).stdout().strip() 76 76 77 77 version_conf = configuration_data() 78 - version_conf.set('ANT_VERSION', '0.1.3.14') 78 + version_conf.set('ANT_VERSION', '0.1.3.15') 79 79 version_conf.set('ANT_GIT_HASH', git_hash) 80 80 version_conf.set('ANT_BUILD_DATE', build_date) 81 81
+5
src/ant.c
··· 7116 7116 jsval_t key = js_mkstr(js, &js->code[id_off], id_len); 7117 7117 if (!is_err(key)) { 7118 7118 res = setprop(js, global_scope, key, js_mkundef()); 7119 + if (!is_err(res)) { 7120 + js->flags &= (uint8_t)~F_THROW; 7121 + js->thrown_value = js_mkundef(); 7122 + if (js->errmsg) js->errmsg[0] = '\0'; 7123 + } 7119 7124 } 7120 7125 } 7121 7126 }