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.

[ci] trigger build

+2 -2
+1 -1
meson.build
··· 168 168 timestamp = timestamp_opt 169 169 endif 170 170 171 - version_conf.set('ANT_VERSION', '0.3.10.' + timestamp + '-g' + git_hash) 171 + version_conf.set('ANT_VERSION', '0.3.11.' + timestamp + '-g' + git_hash) 172 172 version_conf.set('ANT_BUILD_TIMESTAMP', timestamp) 173 173 174 174 cmd_cc = meson.get_compiler('c')
+1 -1
src/ant.c
··· 1398 1398 if (vtype(ctor) == T_FUNC) return ctor; 1399 1399 jsval_t proto = get_slot(js, obj, SLOT_PROTO); 1400 1400 if (vtype(proto) != T_OBJ) return js_mkundef(); 1401 - jsoff_t off = lkp(js, proto, "constructor", 11); 1401 + jsoff_t off = lkp_interned(js, proto, INTERN_CONSTRUCTOR, 11); 1402 1402 return off ? resolveprop(js, mkval(T_PROP, off)) : js_mkundef(); 1403 1403 } 1404 1404