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.

mkscope on start

+2 -1
+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.15') 77 + version_conf.set('ANT_VERSION', '0.0.7.16') 78 78 version_conf.set('ANT_GIT_HASH', git_hash) 79 79 version_conf.set('ANT_BUILD_DATE', build_date) 80 80
+1
src/main.c
··· 55 55 56 56 js_set_filename(js, filename); 57 57 js_setup_import_meta(js, filename); 58 + js_mkscope(js); 58 59 59 60 jsval_t result = js_eval(js, buffer, len); 60 61 free(buffer);