Patch from beard@netscape.com to fix 56879.

This commit is contained in:
nboyd%atg.com 2000-10-23 14:30:40 +00:00
parent 018d56fe75
commit ec341691ee
2 changed files with 16 additions and 0 deletions

View File

@ -89,6 +89,14 @@ public class NativeObject extends ScriptableObject {
return toSource(cx, thisObj, args, funObj);
}
public static String jsFunction_toLocaleString(Context cx,
Scriptable thisObj,
Object[] args,
Function funObj)
{
return jsFunction_toString(cx, thisObj, args, funObj);
}
public static String toSource(Context cx, Scriptable thisObj,
Object[] args, Function funObj)
{

View File

@ -89,6 +89,14 @@ public class NativeObject extends ScriptableObject {
return toSource(cx, thisObj, args, funObj);
}
public static String jsFunction_toLocaleString(Context cx,
Scriptable thisObj,
Object[] args,
Function funObj)
{
return jsFunction_toString(cx, thisObj, args, funObj);
}
public static String toSource(Context cx, Scriptable thisObj,
Object[] args, Function funObj)
{