Mucking about with stuff.

git-svn-id: svn://10.0.0.236/trunk@34891 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
1999-06-11 23:05:16 +00:00
parent c94bac5a24
commit e7d38e04ed
5 changed files with 27 additions and 13 deletions

View File

@@ -2,7 +2,7 @@ class NativeFunction extends JSObject {
NativeFunction(ControlNode aBody)
{
super("Function");
super("Function", null);
body = aBody;
}
@@ -14,7 +14,6 @@ class NativeFunction extends JSObject {
return theEnv.resultValue;
}
ControlNode body;
}