File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ depends: [
20
20
"dune" {>= "1.1.0"}
21
21
"lwt"
22
22
"ocaml" {>= "4.02.0"}
23
- "ocaml-migrate-parsetree" {>= "1.4 .0"}
24
- "ppx_tools_versioned" {>= "5.2.3 "}
23
+ "ocaml-migrate-parsetree" {>= "1.5 .0"}
24
+ "ppx_tools_versioned" {>= "5.3.0 "}
25
25
]
26
26
27
27
build: [
Original file line number Diff line number Diff line change 6
6
(libraries compiler-libs.common ocaml-migrate-parsetree ppx_tools_versioned)
7
7
(ppx_runtime_libraries lwt)
8
8
(kind ppx_rewriter)
9
- (preprocess (pps ppx_tools_versioned.metaquot_409 bisect_ppx --conditional))
9
+ (preprocess (pps ppx_tools_versioned.metaquot_410 bisect_ppx --conditional))
10
10
(flags (:standard -w +A-4)))
Original file line number Diff line number Diff line change 1
1
open ! Migrate_parsetree
2
- open ! OCaml_409 .Ast
2
+ open ! OCaml_410 .Ast
3
3
open Ast_mapper
4
4
open ! Ast_helper
5
5
open Asttypes
6
6
open Parsetree
7
7
8
- open Ast_convenience_409
8
+ open Ast_convenience_410
9
9
10
10
(* * {2 Convenient stuff} *)
11
11
@@ -350,16 +350,16 @@ let mapper =
350
350
351
351
352
352
let args =
353
- Arg. ( [
353
+ [
354
354
" -no-sequence" ,
355
- Unit no_sequence_option,
355
+ Arg. Unit no_sequence_option,
356
356
" has no effect (deprecated)" ;
357
357
358
358
" -no-strict-sequence" ,
359
- Unit no_strict_sequence_option,
359
+ Arg. Unit no_strict_sequence_option,
360
360
" has no effect (deprecated)" ;
361
- ])
361
+ ]
362
362
363
363
let () =
364
- Driver. register ~name: " ppx_lwt" ~args Versions. ocaml_409
364
+ Driver. register ~name: " ppx_lwt" ~args Versions. ocaml_410
365
365
(fun _config _cookies -> mapper)
Original file line number Diff line number Diff line change 161
161
*)
162
162
163
163
164
- val mapper : Migrate_parsetree.OCaml_409 .Ast.Ast_mapper .mapper
164
+ val mapper : Migrate_parsetree.OCaml_410 .Ast.Ast_mapper .mapper
You can’t perform that action at this time.
0 commit comments