ref: 0feb630124c74afff1d21473060c3f37f74e6e54
dir: /jsbnumber.c/
#include "js.h" #include "jsobject.h" #include "jsrun.h" #include "jsstate.h" static int jsB_new_Number(js_State *J, int n) { js_pushobject(J, jsR_newnumber(J, n > 0 ? js_tonumber(J, 0) : 0)); return 1; } static int jsB_Number(js_State *J, int n) { js_pushnumber(J, n > 0 ? js_tonumber(J, 1) : 0); return 1; } static int Np_valueOf(js_State *J, int n) { js_Object *T = js_toobject(J, 0); if (T->type != JS_CNUMBER) jsR_error(J, "TypeError"); js_pushnumber(J, T->primitive.number); return 1; } static int Np_toString(js_State *J, int n) { js_Object *T = js_toobject(J, 0); if (T->type != JS_CNUMBER) jsR_error(J, "TypeError"); js_pushliteral(J, jsR_numbertostring(J, T->primitive.number)); return 1; } static int Np_toFixed(js_State *J, int n) { char buf[40]; js_Object *T = js_toobject(J, 0); int width = js_tonumber(J, 1); if (T->type != JS_CNUMBER) jsR_error(J, "TypeError"); sprintf(buf, "%*f", width, T->primitive.number); js_pushstring(J, buf); return 1; } static int Np_toExponential(js_State *J, int n) { char buf[40]; js_Object *T = js_toobject(J, 0); int width = js_tonumber(J, 1); if (T->type != JS_CNUMBER) jsR_error(J, "TypeError"); sprintf(buf, "%*e", width, T->primitive.number); js_pushstring(J, buf); return 1; } static int Np_toPrecision(js_State *J, int n) { char buf[40]; js_Object *T = js_toobject(J, 0); int width = js_tonumber(J, 1); if (T->type != JS_CNUMBER) jsR_error(J, "TypeError"); sprintf(buf, "%*g", width, T->primitive.number); js_pushstring(J, buf); return 1; } void jsB_initnumber(js_State *J) { J->Number_prototype->primitive.number = 0; js_pushobject(J, jsR_newcconstructor(J, jsB_Number, jsB_new_Number)); { jsB_propn(J, "length", 1); js_pushobject(J, J->Number_prototype); { js_copy(J, -2); js_setproperty(J, -2, "constructor"); jsB_propf(J, "valueOf", Np_valueOf, 0); jsB_propf(J, "toString", Np_toString, 0); jsB_propf(J, "toLocaleString", Np_toString, 0); jsB_propf(J, "toFixed", Np_toFixed, 1); jsB_propf(J, "toExponential", Np_toExponential, 1); jsB_propf(J, "toPrecision", Np_toPrecision, 1); } js_setproperty(J, -2, "prototype"); jsB_propn(J, "MAX_VALUE", DBL_MAX); jsB_propn(J, "MIN_VALUE", DBL_MIN); jsB_propn(J, "NaN", NAN); jsB_propn(J, "NEGATIVE_INFINITY", -INFINITY); jsB_propn(J, "POSITIVE_INFINITY", INFINITY); } js_setglobal(J, "Number"); }