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:
@@ -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");
|
||||
|
||||
@@ -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"} =
|
||||
{
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -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"} =
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user