rurban / re-engine-PCRE2

use pcre-jit instead of slow perl regex

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

op_comp

rurban opened this issue · comments

finish op_comp to fill in values.

code blocks are extracted like this:

/a(?{$a=2;$b=3;($b)=$a})b/ =>
expr: 'a' + getvars + '(?{$a=2;$b=3;($b)=$a})' + 'b'

currently we only compile the first 'a', not the other patterns

Done with 262567b