1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-19 08:47:46 +03:00
kakoune/test/regression/4519-regex-alternation-priority
Maxime Coste 33e81af0f3 Fix regex alternation execution priority
The ThreadedRegexVM implementation does not execute split opcodes as
expected: on split the pending thread is pushed on top of the thread
stack, which means that when multiple splits are executed in a row
(such as with a disjunction with 3 or more branches) the last split
target gets on top of the thread stack and gets executed next (when the
thread from the first split target would be the expected one)

Fixing this in the ThreadedRegexVM would have a performance impact as
we would not be able to use a plain stack for current threads, so the
best solution at the moment is to reverse the order of splits generated
by a disjunction.

Fixes #4519
2022-02-02 14:51:17 +11:00
..
cmd Fix regex alternation execution priority 2022-02-02 14:51:17 +11:00
in Fix regex alternation execution priority 2022-02-02 14:51:17 +11:00
kak_selections Fix regex alternation execution priority 2022-02-02 14:51:17 +11:00