Show
Ignore:
Timestamp:
07/04/08 13:39:38 (5 months ago)
Author:
pmurias
Message:

[pixie] arrays are marked in the dumps, stranger token names work more often

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • misc/pixie/extract_actions

    r21084 r21213  
    1111my @last_token; 
    1212for (@chunks) { 
    13     /^.* (?:regex|rule|token) \s+ ([:\w]+)/sx; 
    14     push (@last_token,$1); 
     13    /^.* (?:regex|rule|token) \s+ ([:\w]+?(?:sym<.*?>)?)\s/sx; 
     14    my $name = $1; 
     15    $name =~ s/sym:<(.*)>/$1/g; 
     16    push (@last_token,$name); 
    1517} 
    1618