For manually writing lexers my favorite idiom is
$$s =~ m/\G.../gc. In scalar context it permits to advance in a string
$$s I want to lex. If it matches the
current position, it moves past the match, if not, the position is inchanged,
\G permits to anchor the match
at the current position.
I could also use
$$s = s/^...//. It
does not cost much because the implementation does not
move the string to truncate but just move an internal
pointer.
But this
is immaterial to the following discussion.
A lexer for Parse::Yapp ends up looking like
sub lexer {
my($parser)=shift;
my $s = $parser->YYData->{INPUT}; # reference to the string to lex
m/\G\s+/gc; skip any spaces
return ('INT', $1) if $$s =~ m/\G\(d+)/gc;
return ('ID', $1) if $$s =~ m/\G([A-Z]\w*)/gc;
... # and it goes on for many tentative matches
}
I know that I always match
on
$$s so why should I restate it at each match.
I _had_ to remove
these useless
$$S !
It took me a long time to realize that I could do it
with a typeglob trick :
*_ = $parser->YYData->{INPUT}; # reference to the string to lex
Now
$_ is an alias to the string to lex.
So I can match on it I and don't need the
=~ operator anymore
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.