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.

add dynamic import parsing

+2 -1
+1 -1
meson.build
··· 42 42 build_date = run_command('date', '+%Y-%m-%d', check: true).stdout().strip() 43 43 44 44 version_conf = configuration_data() 45 - version_conf.set('ANT_VERSION', '0.0.6.9') 45 + version_conf.set('ANT_VERSION', '0.0.6.10') 46 46 version_conf.set('ANT_GIT_HASH', git_hash) 47 47 version_conf.set('ANT_BUILD_DATE', build_date) 48 48
+1
src/ant.c
··· 2688 2688 case TOK_TRUE: return js_mktrue(); 2689 2689 case TOK_FALSE: return js_mkfalse(); 2690 2690 case TOK_THIS: return js->this_val; 2691 + case TOK_IMPORT: return mkcoderef((jsoff_t) js->toff, (jsoff_t) js->tlen); 2691 2692 case TOK_IDENTIFIER: return mkcoderef((jsoff_t) js->toff, (jsoff_t) js->tlen); 2692 2693 case TOK_CATCH: return mkcoderef((jsoff_t) js->toff, (jsoff_t) js->tlen); 2693 2694 case TOK_TRY: return mkcoderef((jsoff_t) js->toff, (jsoff_t) js->tlen);