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.

trailing comma

+3 -3
+1 -1
meson.build
··· 79 79 build_date = run_command('date', '+%Y-%m-%d', check: true).stdout().strip() 80 80 81 81 version_conf = configuration_data() 82 - version_conf.set('ANT_VERSION', '0.2.3.13') 82 + version_conf.set('ANT_VERSION', '0.2.3.14') 83 83 version_conf.set('ANT_GIT_HASH', git_hash) 84 84 version_conf.set('ANT_BUILD_DATE', build_date) 85 85
+2 -2
src/ant.c
··· 4765 4765 js->flags |= F_NOEXEC; 4766 4766 js->consumed = 1; 4767 4767 4768 - for (bool comma = false; next(js) != TOK_EOF; comma = true) { 4769 - if (!comma && next(js) == TOK_RPAREN) break; 4768 + while (next(js) != TOK_EOF) { 4769 + if (next(js) == TOK_RPAREN) break; 4770 4770 if (next(js) == TOK_REST) js->consumed = 1; 4771 4771 js_expr(js); 4772 4772 if (next(js) == TOK_RPAREN) break;