summaryrefslogtreecommitdiff
path: root/regcomp.sym
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-12-23 19:37:36 -0700
committerKarl Williamson <public@khwilliamson.com>2012-01-19 11:58:18 -0700
commitca600955b124a74a55428f5d252241f4119646d4 (patch)
tree1e72ab454aba32865a19439683f1b7984169b6b6 /regcomp.sym
parent3c7606610aea217f76f5efe36a0540064ff6919a (diff)
downloadperl-ca600955b124a74a55428f5d252241f4119646d4.tar.gz
regex: Add new node type EXACTFU_NO_TRIE
This new node is like EXACTFU but is not currently trie'able. This adds handling for it in regexec.c, but it is not currently generated; this commit is preparing for future commits
Diffstat (limited to 'regcomp.sym')
-rw-r--r--regcomp.sym1
1 files changed, 1 insertions, 0 deletions
diff --git a/regcomp.sym b/regcomp.sym
index 09800b44b5..9f7788d943 100644
--- a/regcomp.sym
+++ b/regcomp.sym
@@ -99,6 +99,7 @@ EXACTF EXACT, str ; Match this non-UTF-8 string (not guaranteed
EXACTFL EXACT, str ; Match this string (not guaranteed to be folded) using /il rules (w/len).
EXACTFU EXACT, str ; Match this string (folded iff in UTF-8, length in folding doesn't change if not in UTF-8) using /iu rules (w/len).
EXACTFU_SS EXACT, str ; Match this string (folded iff in UTF-8, length in folding may change even if not in UTF-8) using /iu rules (w/len).
+EXACTFU_NO_TRIE EXACT, str ; Match this folded UTF-8 string using /iu rules, but don't generate a trie for it
EXACTFA EXACT, str ; Match this string (not guaranteed to be folded) using /iaa rules (w/len).
#*Do nothing types