Closed rurban closed 7 years ago
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'
/a(?{$a=2;$b=3;($b)=$a})b/
'(?{$a=2;$b=3;($b)=$a})'
currently we only compile the first 'a', not the other patterns
Done with 262567b7dabb0980a2de2bb3df0603d25b4d5f8a
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