index
:
bp
main
master
Bruce's Parsing Expression Grammar tool for matching PEGs
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
pattern.c
Age
Commit message (
Expand
)
Author
2022-04-21
Made NULL end values default to strlen()
Bruce Hill
2021-09-28
Hardening utils (added *end param to avoid going past the end of
Bruce Hill
2021-09-27
Removed definitions as a separate type and instead encode that value in
Bruce Hill
2021-09-26
Refactor of pat_t memory management to use doubly linked lists, and
Bruce Hill
2021-09-26
Minor cleanups
Bruce Hill
2021-09-24
Bugfix
Bruce Hill
2021-09-23
Patterns no longer need files.h
Bruce Hill
2021-09-23
Patterns don't need to reference a separate `start` value anymore
Bruce Hill
2021-09-23
Moving pattern lifetime tracking off of files and onto its own list of
Bruce Hill
2021-09-23
Moved type defs into their own files instead of types.h
Bruce Hill
2021-09-23
API update: made new_pat() internal and added public bp_backref() to
Bruce Hill
2021-09-23
Switched to using an optional type
Bruce Hill
2021-09-23
Merge branch 'master' into setjmp
Bruce Hill
2021-09-23
Deprecated (!)-errors
Bruce Hill
2021-09-23
WIP implementation of setjmp/longjmp recovery
Bruce Hill
2021-09-21
Moving cache logic into match, cleaner next_match() API, and slightly
Bruce Hill
2021-08-28
Style change: added cino=:0 (i.e. case statements on same indentation as
Bruce Hill
2021-08-23
Add support for {strings}
Bruce Hill
2021-08-02
Bugfix for postfix operators
Bruce Hill
2021-08-01
Cleanup of space/line skipping code
Bruce Hill
2021-08-01
Changed how definitions work
Bruce Hill
2021-07-30
Added | as alias for \b
Bruce Hill
2021-07-30
Added strict mode for upto operator: ..=Abc
Bruce Hill
2021-07-30
Ergonomic improvement: xcalloc -> new(), xrealloc -> grow()
Bruce Hill
2021-07-29
Fix for bug in char pattern start pos
Bruce Hill
2021-07-29
Tweaks and optimizations
Bruce Hill
2021-07-26
Performance improvements for caching
Bruce Hill
2021-07-26
Introduced cache to greatly speed up many use cases
Bruce Hill
2021-07-19
Error reporting bugfix
Bruce Hill
2021-07-19
Made escape sequence handling stricter: no longer supporting arbitrary
Bruce Hill
2021-07-19
Overhaul of word boundaries/edges. Now they use \b, which is implemented
Bruce Hill
2021-07-17
Added support for multiple escape sequences: \n,r,t
Bruce Hill
2021-05-22
Minor splint fixes
Bruce Hill
2021-05-22
Fixes for replacements with or without patterns/replacement strings
Bruce Hill
2021-05-20
Fix for broken escapes
Bruce Hill
2021-05-20
Fixed backslash escape for single utf8 chars.
Bruce Hill
2021-05-20
Fixes for char sets/ranges and cleanups
Bruce Hill
2021-05-20
Cleanup/fix
Bruce Hill
2021-05-20
Better codepoint functionality
Bruce Hill
2021-05-20
Mostly working version
Bruce Hill
2021-05-20
Removed escape sequences from string pats (use `bp 'line\nl;line'` or
Bruce Hill
2021-05-20
Added (!) syntax for errors with proper opcode support
Bruce Hill
2021-05-19
Added ~ and !~ operators as replacements for == and !=
Bruce Hill
2021-05-16
Be more permissive around closing quotes/parens
Bruce Hill
2021-05-12
Bugfix for off-by-one error
Bruce Hill
2021-05-11
Renamed boundary->edge
Bruce Hill
2021-05-11
Overhaul of |-word boundaries (| is deprecated), performance
Bruce Hill
2021-05-11
Converted ^/^^/$/$$ into pattern types instead of builtin definitions
Bruce Hill
2021-05-11
Code cleanup: adding len parameter to new_pat()
Bruce Hill
2021-05-10
Added {word} feature and cleaned up the code some.
Bruce Hill
[next]