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.

cleanup

+1 -4
+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.2.20') 82 + version_conf.set('ANT_VERSION', '0.2.2.21') 83 83 version_conf.set('ANT_GIT_HASH', git_hash) 84 84 version_conf.set('ANT_BUILD_DATE', build_date) 85 85
-3
src/ant.c
··· 10522 10522 } 10523 10523 10524 10524 EXPECT(TOK_LBRACE, ); 10525 - jsoff_t class_body_start = js->pos; 10526 10525 jsoff_t constructor_params_start = 0; 10527 10526 jsoff_t constructor_body_start = 0, constructor_body_end = 0; 10528 10527 uint8_t save_flags = js->flags; ··· 10935 10934 } 10936 10935 } 10937 10936 10938 - (void) class_body_start; 10939 10937 utarray_free(methods); 10940 10938 return constructor; 10941 10939 } 10942 10940 10943 - (void) class_body_start; 10944 10941 utarray_free(methods); 10945 10942 return js_mkundef(); 10946 10943 }