Changed ArgumentList to ArgumentList*. (Still need to handle the

destructor though).


git-svn-id: svn://10.0.0.236/trunk@81553 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
2000-10-21 00:31:22 +00:00
parent 289f607a92
commit a7b53cf793
4 changed files with 6 additions and 6 deletions

View File

@@ -134,7 +134,7 @@ sub get_map {
my $p;
@ot = ();
for $p (@params) {
if ($p eq "ArgumentList") {
if ($p eq "ArgumentList*") {
push (@ot, "otArgumentList");
} elsif ($p eq "BinaryOperator::BinaryOp") {
push (@ot, "otBinaryOp");

View File

@@ -339,13 +339,13 @@ $ops{"CALL"} =
{
super => "Instruction_4",
rem => "result, target, this, args",
params => [ ("TypedRegister", "TypedRegister", "TypedRegister", "ArgumentList") ]
params => [ ("TypedRegister", "TypedRegister", "TypedRegister", "ArgumentList*") ]
};
$ops{"DIRECT_CALL"} =
{
super => "Instruction_3",
rem => "result, target, args",
params => [ ("TypedRegister", "JSFunction*", "ArgumentList") ]
params => [ ("TypedRegister", "JSFunction*", "ArgumentList*") ]
};
$ops{"GET_METHOD"} =
{

View File

@@ -134,7 +134,7 @@ sub get_map {
my $p;
@ot = ();
for $p (@params) {
if ($p eq "ArgumentList") {
if ($p eq "ArgumentList*") {
push (@ot, "otArgumentList");
} elsif ($p eq "BinaryOperator::BinaryOp") {
push (@ot, "otBinaryOp");

View File

@@ -339,13 +339,13 @@ $ops{"CALL"} =
{
super => "Instruction_4",
rem => "result, target, this, args",
params => [ ("TypedRegister", "TypedRegister", "TypedRegister", "ArgumentList") ]
params => [ ("TypedRegister", "TypedRegister", "TypedRegister", "ArgumentList*") ]
};
$ops{"DIRECT_CALL"} =
{
super => "Instruction_3",
rem => "result, target, args",
params => [ ("TypedRegister", "JSFunction*", "ArgumentList") ]
params => [ ("TypedRegister", "JSFunction*", "ArgumentList*") ]
};
$ops{"GET_METHOD"} =
{