Bug #32937, toLocaleString added to Number class.

This commit is contained in:
rogerl%netscape.com 2000-05-09 23:46:13 +00:00
Родитель fdba51a861
Коммит 4cfd991214
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -108,6 +108,10 @@ public class NativeNumber extends ScriptableObject {
return doubleValue;
}
public String jsFunction_toLocaleString(Object arg) {
return toString();
}
public String jsFunction_toFixed(Object arg) {
/* We allow a larger range of precision than
ECMA requires; this is permitted by ECMA. */

Просмотреть файл

@ -108,6 +108,10 @@ public class NativeNumber extends ScriptableObject {
return doubleValue;
}
public String jsFunction_toLocaleString(Object arg) {
return toString();
}
public String jsFunction_toFixed(Object arg) {
/* We allow a larger range of precision than
ECMA requires; this is permitted by ECMA. */