Patrick R. Michaud wrote:
> On Sun, Oct 12, 2008 at 11:44:05AM +0200, Moritz Lenz wrote:
>> When we write regexes, we generally capture stuff in a way that makes
>> the following semantic analysis easier. For example we could have a
>> regex m/ <this>+ <that>? <this>*/ if we're only interested in the match
>> trees of what <this> and <that> matches, not their respective order.
>> [...]
>> But if you want to re-used the match tree for something different (say,
>> instead of doing a semantic analysis we want to do syntax hilighting)
>> it's rather hard to reconstruct the original text, and what part of it
>> was matched by which subrule. 
> 
> Perhaps aliases...?
> 
>     m/ <this>+ <that>? <andthen=this>* /
> 
> This is probably not exactly what you're looking for, but
> that would be what I would look at for this specific example.

I'm looking more for a general solution for which you don't have to
manipulate the rule itself, and which should ideally work with as little
knowledge of the rule as possible.

Just see through which loops STD5_dump_match (in the same dir as STD.pm)
has to jump to get a grab of the parse tree in the right order.

Moritz

-- 
Moritz Lenz
http://perlgeek.de/ |  http://perl-6.de/ | http://sudokugarden.de/

Reply via email to