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.

allow esbuilt things to work

+7 -2
+1 -1
examples/server/radix3.js
··· 148 148 const handler = this.matchPath(methodRoot, path, 0, params); 149 149 150 150 if (!handler) return undefined; 151 - return { handler: handler, params: params }; 151 + return { handler, params }; 152 152 } 153 153 154 154 matchPath(node, path, depth, params) {
+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.12') 77 + version_conf.set('ANT_VERSION', '0.0.8.13') 78 78 version_conf.set('ANT_GIT_HASH', git_hash) 79 79 version_conf.set('ANT_BUILD_DATE', build_date) 80 80
+5
src/ant.c
··· 4604 4604 } else { 4605 4605 jsval_t v = js_expr(js); 4606 4606 if (is_err(v)) return v; 4607 + while (next(js) == TOK_COMMA) { 4608 + js->consumed = 1; 4609 + v = js_expr(js); 4610 + if (is_err(v)) return v; 4611 + } 4607 4612 if (next(js) != TOK_RPAREN) return js_mkerr(js, ") expected"); 4608 4613 js->consumed = 1; 4609 4614 return v;