Added doubleToUint32 builtin and make tracker a template.

This commit is contained in:
Andreas Gal
2008-07-06 10:59:55 -07:00
parent a37775658d
commit d94eda9c18
4 changed files with 32 additions and 22 deletions

View File

@@ -101,3 +101,8 @@ FASTCALL int32 builtin_doubleToInt32(jsdouble d)
{
return js_DoubleToECMAInt32(d);
}
FASTCALL int32 builtin_doubleToUint32(jsdouble d)
{
return js_DoubleToECMAUint32(d);
}