From a7b53cf793a9478c55318d43933b4aa756a4622f Mon Sep 17 00:00:00 2001 From: "rogerl%netscape.com" Date: Sat, 21 Oct 2000 00:31:22 +0000 Subject: [PATCH] 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 --- mozilla/js/js2/tools/genmap.pl | 2 +- mozilla/js/js2/tools/jsicodes.pm | 4 ++-- mozilla/js2/tools/genmap.pl | 2 +- mozilla/js2/tools/jsicodes.pm | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mozilla/js/js2/tools/genmap.pl b/mozilla/js/js2/tools/genmap.pl index b39ea53ef6b..ef4223e06aa 100644 --- a/mozilla/js/js2/tools/genmap.pl +++ b/mozilla/js/js2/tools/genmap.pl @@ -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"); diff --git a/mozilla/js/js2/tools/jsicodes.pm b/mozilla/js/js2/tools/jsicodes.pm index 5f9294a9a47..51be5ebd5ff 100644 --- a/mozilla/js/js2/tools/jsicodes.pm +++ b/mozilla/js/js2/tools/jsicodes.pm @@ -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"} = { diff --git a/mozilla/js2/tools/genmap.pl b/mozilla/js2/tools/genmap.pl index b39ea53ef6b..ef4223e06aa 100644 --- a/mozilla/js2/tools/genmap.pl +++ b/mozilla/js2/tools/genmap.pl @@ -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"); diff --git a/mozilla/js2/tools/jsicodes.pm b/mozilla/js2/tools/jsicodes.pm index 5f9294a9a47..51be5ebd5ff 100644 --- a/mozilla/js2/tools/jsicodes.pm +++ b/mozilla/js2/tools/jsicodes.pm @@ -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"} = {