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.

fix export

+2 -2
+1 -1
meson.build
··· 74 74 build_date = run_command('date', '+%Y-%m-%d', check: true).stdout().strip() 75 75 76 76 version_conf = configuration_data() 77 - version_conf.set('ANT_VERSION', '0.0.7.13') 77 + version_conf.set('ANT_VERSION', '0.0.7.14') 78 78 version_conf.set('ANT_GIT_HASH', git_hash) 79 79 version_conf.set('ANT_BUILD_DATE', build_date) 80 80
+1 -1
src/ant.c
··· 8185 8185 if (is_err(local_val)) return local_val; 8186 8186 8187 8187 setprop(js, module_ns, js_mkstr(js, export_name, export_len), resolveprop(js, local_val)); 8188 - 8189 8188 if (next(js) == TOK_COMMA) js->consumed = 1; 8190 8189 } 8191 8190 8192 8191 EXPECT(TOK_RBRACE, ); 8192 + if (next(js) == TOK_SEMICOLON) js->consumed = 1; 8193 8193 return js_mkundef(); 8194 8194 } 8195 8195