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.

toStringTag

+7 -1
+1 -1
meson.build
··· 75 75 build_date = run_command('date', '+%Y-%m-%d', check: true).stdout().strip() 76 76 77 77 version_conf = configuration_data() 78 - version_conf.set('ANT_VERSION', '0.1.3.10') 78 + version_conf.set('ANT_VERSION', '0.1.3.11') 79 79 version_conf.set('ANT_GIT_HASH', git_hash) 80 80 version_conf.set('ANT_BUILD_DATE', build_date) 81 81
+6
src/ant.c
··· 4578 4578 } else if (vtype(js->current_func) == T_FUNC) { 4579 4579 setprop(js, arguments_obj, js_mkstr(js, "callee", 6), js->current_func); 4580 4580 } 4581 + 4582 + const char *toStringTag_key = get_toStringTag_sym_key(); 4583 + if (toStringTag_key && toStringTag_key[0] != '\0') { 4584 + setprop(js, arguments_obj, js_mkstr(js, toStringTag_key, strlen(toStringTag_key)), js_mkstr(js, "Arguments", 9)); 4585 + } 4586 + 4581 4587 arguments_obj = mkval(T_ARR, vdata(arguments_obj)); 4582 4588 setprop(js, scope, js_mkstr(js, "arguments", 9), arguments_obj); 4583 4589 }