diff options
author | Yves Orton <demerphq@gmail.com> | 2006-04-23 23:10:34 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-24 13:21:09 +0000 |
commit | ce5e94717f361c3fd6b9b0fb704412d30f3ccf66 (patch) | |
tree | cc44ba75d352e9c7db3109b4935e3f2c1dca8576 /regcomp.sym | |
parent | f27977c3127ab1a3bd087690c418557490be39b2 (diff) | |
download | perl-ce5e94717f361c3fd6b9b0fb704412d30f3ccf66.tar.gz |
Re: recursion now removed from the regex engine
Message-ID: <9b18b3110604231210w5deff59el3a1a79c98f34e0fd@mail.gmail.com>
Date: Sun, 23 Apr 2006 21:10:34 +0200
p4raw-id: //depot/perl@27952
Diffstat (limited to 'regcomp.sym')
-rw-r--r-- | regcomp.sym | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/regcomp.sym b/regcomp.sym index 1bcdecb48b..19d729eb9d 100644 --- a/regcomp.sym +++ b/regcomp.sym @@ -60,11 +60,6 @@ EXACT EXACT, sv Match this string (preceded by length). EXACTF EXACT, sv Match this string, folded (prec. by length). EXACTFL EXACT, sv Match this string, folded in locale (w/len). -# Trie Related (behave the same as A|LIST|OF|WORDS would) -TRIE TRIE, trie 1 Match one or more of many EXACT strings -TRIEF TRIE, trie 1 Match one or more of many EXACTF strings -TRIEFL TRIE, trie 1 Match one or more of many EXACTFL strings - # Do nothing NOTHING NOTHING,no Match empty string. # A variant of above which delimits a group, thus stops optimizations @@ -119,3 +114,9 @@ RENUM BRANCHJ,off 1 1 Group with independently numbered parens. # This is not really a node, but an optimized away piece of a "long" node. # To simplify debugging output, we mark it as if it were a node OPTIMIZED NOTHING,off Placeholder for dump. + +# Trie Related (behave the same as A|LIST|OF|WORDS would) +TRIE TRIE, trie 1 Match one or more of many EXACT strings +TRIEF TRIE, trie 1 Match one or more of many EXACTF strings +TRIEFL TRIE, trie 1 Match one or more of many EXACTFL strings + |