diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2024-01-10 14:36:19 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-01-11 18:52:55 +0100 |
commit | 7aad80783d414b8cf16fead051876b139f29504c (patch) | |
tree | 8835610545c884ec728479a61bda75dd0887ccd5 /lib/quickjs/libregexp-opcode.h | |
parent | 1c7893e4db7fc71a401042c25f0aafb74cddc5a5 (diff) | |
download | chawan-7aad80783d414b8cf16fead051876b139f29504c.tar.gz |
regexp: fixed the zero advance logic in quantifiers (github issue #158)
Diffstat (limited to 'lib/quickjs/libregexp-opcode.h')
-rw-r--r-- | lib/quickjs/libregexp-opcode.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/quickjs/libregexp-opcode.h b/lib/quickjs/libregexp-opcode.h index f90c23b3..189d1215 100644 --- a/lib/quickjs/libregexp-opcode.h +++ b/lib/quickjs/libregexp-opcode.h @@ -50,8 +50,7 @@ DEF(range32, 3) /* variable length */ DEF(lookahead, 5) DEF(negative_lookahead, 5) DEF(push_char_pos, 1) /* push the character position on the stack */ -DEF(bne_char_pos, 5) /* pop one stack element and jump if equal to the character - position */ +DEF(check_advance, 1) /* pop one stack element and check that it is different from the character position */ DEF(prev, 1) /* go to the previous char */ DEF(simple_greedy_quant, 17) |