File tree Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change
1
+ ## v0.5.1 - 2022-06-09
2
+
3
+ - Fix invalid AST due to empty binding list in ` ppx_regexp ` .
4
+
1
5
## v0.5.0 - 2022-06-06
2
6
3
7
- Migrate ` ppx_regexp ` to ppxlib.
Original file line number Diff line number Diff line change 224
224
225
225
let impl str =
226
226
let str, rev_bindings = transformation#structure str [] in
227
+ if rev_bindings = [] then str else
227
228
let re_str =
228
229
let loc = Location. none in
229
230
[% str
Original file line number Diff line number Diff line change 9
9
10
10
; Tests for ppx_regexp
11
11
12
- (executable
13
- (name test_ppx_regexp)
14
- (modules test_ppx_regexp)
12
+ (tests
13
+ (names test_ppx_regexp test_ppx_regexp_unused)
14
+ (modules test_ppx_regexp test_ppx_regexp_unused)
15
+ (package ppx_regexp)
15
16
(libraries re re.perl)
16
17
(preprocess (pps ppx_regexp)))
17
- (alias
18
- (name runtest)
19
- (package ppx_regexp)
20
- (deps test_ppx_regexp.exe)
21
- (action (run %{deps})))
22
18
23
19
; Tests for ppx_tyre
24
20
Original file line number Diff line number Diff line change
1
+ let () = ()
You can’t perform that action at this time.
0 commit comments