hmm.. thanx for the answers.
As I thought it seems counterproductive to use aliasing..
Lets rephrase the second question :
the idea is to have the result of the parsing as internal object data but not global..
this way I can create many objects that can parse different string-flows.. so that i do :
my $obj = new Parser();
$obj->parse;
print "$_\n" for @{$$obj{_data}};
this mean I have to write directly into $$obj{_data} array during the parse..
I can't figure out how to access object data from the parse..probably class var which will work as intermediate reference...
package Parser;
our $ref;
my $grammar = q{
{ my $data = $ref }
start : .....
ruleX : blah hmm { push @{$$data{_data}}, $item[2] }
}
sub parse {
my $self = shift;
$ref = $self{_data};
$parser = new Parse::RecDescent;
$parser->start($$self{str})
...
}
havent tested..is this the correct way of doing it ?!
what bothers me in this variant is that $ref can be overwriten from different objects..(which can be problem in multiuser env., not that i will use it in such way but who know :"))
Using array/stack will not solve this problem either..
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.