Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
8cda4b6
Update .ocamlformat
dyzsr Aug 25, 2022
62b678a
Add field `alias` to Sedlex.node
dyzsr Sep 3, 2022
73e31fa
Update `regexp_of_pattern` to analyze aliases
dyzsr Sep 3, 2022
2144578
Refactor tracking path
dyzsr Sep 5, 2022
d2b29d9
Implement path tracing
dyzsr Sep 18, 2022
5f3dea9
Fix location messages
dyzsr Sep 19, 2022
8f741b2
Fix version number
dyzsr Sep 19, 2022
ad3d0a0
Bug fixes & Add testcases
dyzsr Sep 20, 2022
8e706d9
Optimize traces generation
dyzsr Sep 20, 2022
214f689
Make allow_alias a mandatory argument
dyzsr Sep 21, 2022
dc02370
Add testcases
dyzsr Sep 22, 2022
9081c14
Fix mark and backtrack
dyzsr Sep 22, 2022
fad0f51
Maintain alias starts/stops instead of pos/len
dyzsr Sep 22, 2022
e02fd3c
Fix path tracing & Use expect test
dyzsr Sep 22, 2022
86f42a8
Fix path tracing
dyzsr Sep 23, 2022
53488c6
Fix char set guard
dyzsr Sep 23, 2022
9154025
Optimize trace cases generation
dyzsr Sep 24, 2022
18f54cf
Dup case fixes
dyzsr Sep 24, 2022
18d7062
Merge alias offsets
dyzsr Sep 26, 2022
0e5dbd4
Fix merging actions
dyzsr Sep 26, 2022
72e6f3f
Optimize error message
dyzsr Sep 26, 2022
1a2961a
Update gen_alias & gen_offsets
dyzsr Sep 27, 2022
23bf119
Update actions
dyzsr Sep 27, 2022
e7258ef
Updates
dyzsr Sep 27, 2022
5ae1589
Remove nodes_idx
dyzsr Sep 27, 2022
5b63621
Optimize tracking path
dyzsr Sep 27, 2022
c8224bf
Update tracking path
dyzsr Sep 28, 2022
c63ff90
Fix the use of try with
dyzsr Sep 28, 2022
5f0bad9
Update tests
dyzsr Sep 28, 2022
f54e94d
Fix is_relevant
dyzsr Sep 29, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ocamlformat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=0.19.0
#version=0.19.0
profile = conventional
break-separators = after
space-around-lists = false
Expand Down
2 changes: 1 addition & 1 deletion src/lib/sedlexing.mli
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ val next : lexbuf -> Uchar.t option
lexer buffer and increments to current position. If the input stream
is exhausted, the function returns -1.
If a ['\n'] is encountered, the tracked line number is incremented.

This is a private API, it should not be used by code using this module's
API and can be removed at any time. *)
val __private__next_int : lexbuf -> int
Expand Down
Loading