our
$VERSION
= 0.003_000;
our
hashref
$properties
= {};
sub
ast_to_rperl__generate {
{
my
string_hashref::method
$RETURN_TYPE
};
(
my
object
$self
,
my
string_hashref
$modes
) =
@ARG
;
my
string_hashref
$rperl_source_group
= {
PMC
=>
q{}
};
my
string
$self_class
=
ref
$self
;
if
(
$self_class
eq
'Loop_187'
) {
$self
=
$self
->{children}->[0];
$self_class
=
ref
$self
;
}
if
(
$self_class
eq
'LoopWhile_191'
) {
my
string
$while
=
$self
->{children}->[0];
my
string
$left_paren
=
$self
->{children}->[1];
my
object
$subexpression
=
$self
->{children}->[2];
my
string
$right_paren
=
$self
->{children}->[3];
my
object
$codeblock
=
$self
->{children}->[4];
$rperl_source_group
->{PMC} .=
$while
.
q{ }
.
$left_paren
.
q{ }
;
my
object
$rperl_source_subgroup
=
$subexpression
->ast_to_rperl__generate(
$modes
);
RPerl::Generator::source_group_append(
$rperl_source_group
,
$rperl_source_subgroup
);
$rperl_source_group
->{PMC} .=
q{ }
.
$right_paren
.
q{ }
;
$rperl_source_subgroup
=
$codeblock
->ast_to_rperl__generate(
$modes
);
RPerl::Generator::source_group_append(
$rperl_source_group
,
$rperl_source_subgroup
);
}
elsif
(
$self_class
eq
'LoopWhile_192'
) {
my
string
$while
=
$self
->{children}->[0];
my
string
$left_paren_my
=
$self
->{children}->[1];
my
string
$type
=
$self
->{children}->[2]->{children}->[0];
my
string
$variable_symbol
=
$self
->{children}->[3];
my
string
$assign
=
$self
->{children}->[4];
my
object
$subexpression_or_stdin
=
$self
->{children}->[5];
my
string
$right_paren
=
$self
->{children}->[6];
my
object
$codeblock
=
$self
->{children}->[7];
$rperl_source_group
->{PMC} .=
$while
.
q{ }
.
$left_paren_my
.
q{ }
.
$type
.
q{ }
.
$variable_symbol
.
q{ }
.
$assign
.
q{ }
;
my
object
$rperl_source_subgroup
=
$subexpression_or_stdin
->ast_to_rperl__generate(
$modes
);
RPerl::Generator::source_group_append(
$rperl_source_group
,
$rperl_source_subgroup
);
$rperl_source_group
->{PMC} .=
q{ }
.
$right_paren
.
q{ }
;
$rperl_source_subgroup
=
$codeblock
->ast_to_rperl__generate(
$modes
);
RPerl::Generator::source_group_append(
$rperl_source_group
,
$rperl_source_subgroup
);
}
else
{
die
RPerl::Parser::rperl_rule__replace(
'ERROR ECOGEASRP000, CODE GENERATOR, ABSTRACT SYNTAX TO RPERL: Grammar rule '
.
$self_class
.
' found where LoopWhile_191 or LoopWhile_192 expected, dying'
)
.
"\n"
;
}
return
$rperl_source_group
;
}
sub
ast_to_cpp__generate__CPPOPS_PERLTYPES {
{
my
string_hashref::method
$RETURN_TYPE
};
(
my
object
$self
,
my
string
$loop_label
,
my
string_hashref
$modes
) =
@ARG
;
my
string_hashref
$cpp_source_group
= {
CPP
=>
q{// <<< RP::O::S::L::W __DUMMY_SOURCE_CODE CPPOPS_PERLTYPES >>>}
.
"\n"
};
return
$cpp_source_group
;
}
sub
ast_to_cpp__generate__CPPOPS_CPPTYPES {
{
my
string_hashref::method
$RETURN_TYPE
};
(
my
object
$self
,
my
string
$loop_label
,
my
string_hashref
$modes
) =
@ARG
;
my
string_hashref
$cpp_source_group
= {
CPP
=>
q{}
};
my
string
$self_class
=
ref
$self
;
if
(
$self_class
eq
'Loop_187'
) {
$self
=
$self
->{children}->[0];
$self_class
=
ref
$self
;
}
if
(
$self_class
eq
'LoopWhile_191'
) {
my
string
$while
=
$self
->{children}->[0];
my
string
$left_paren
=
$self
->{children}->[1];
my
object
$subexpression
=
$self
->{children}->[2];
my
string
$right_paren
=
$self
->{children}->[3];
my
object
$codeblock
=
$self
->{children}->[4];
$cpp_source_group
->{CPP} .=
$while
.
q{ }
.
$left_paren
.
q{ }
;
my
object
$cpp_source_subgroup
=
$subexpression
->ast_to_cpp__generate__CPPOPS_CPPTYPES(
$modes
);
RPerl::Generator::source_group_append(
$cpp_source_group
,
$cpp_source_subgroup
);
$cpp_source_group
->{CPP} .=
q{ }
.
$right_paren
.
q{ }
;
$cpp_source_subgroup
=
$codeblock
->ast_to_cpp__generate__CPPOPS_CPPTYPES(
$loop_label
,
$modes
);
RPerl::Generator::source_group_append(
$cpp_source_group
,
$cpp_source_subgroup
);
}
elsif
(
$self_class
eq
'LoopWhile_192'
) {
$cpp_source_group
= {
CPP
=>
q{// <<< RP::O::S::L::W __DUMMY_SOURCE_CODE CPPOPS_CPPTYPES >>>}
.
"\n"
};
}
else
{
die
RPerl::Parser::rperl_rule__replace(
'ERROR ECOGEASRP000, CODE GENERATOR, ABSTRACT SYNTAX TO RPERL: Grammar rule '
.
$self_class
.
' found where LoopWhile_191 or LoopWhile_192 expected, dying'
)
.
"\n"
;
}
return
$cpp_source_group
;
}
1;