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.

inline comma

+9 -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.8.13') 77 + version_conf.set('ANT_VERSION', '0.0.8.14') 78 78 version_conf.set('ANT_GIT_HASH', git_hash) 79 79 version_conf.set('ANT_BUILD_DATE', build_date) 80 80
+7 -1
src/ant.c
··· 6924 6924 case TOK_FOR: res = js_for(js); break; 6925 6925 case TOK_RETURN: res = js_return(js); break; 6926 6926 case TOK_TRY: res = js_try(js); break; 6927 - default: res = resolveprop(js, js_expr(js)); break; 6927 + default: 6928 + res = resolveprop(js, js_expr(js)); 6929 + while (next(js) == TOK_COMMA) { 6930 + js->consumed = 1; 6931 + res = resolveprop(js, js_expr(js)); 6932 + } 6933 + break; 6928 6934 } 6929 6935 6930 6936 bool is_block_statement = (
+1
tests/t5.js
··· 1 + let o=[0,0,0,0,0,0,0,0,0];o[6]=o[6]&15|64,o[8]=o[8]&63|128;console.log(o)