···200200 { value = Syn.Dx_query (var, List.map expand positives, List.map expand negatives); loc } :: expand rest
201201 | { value = Fun (xs, body); loc } :: rest ->
202202 expand_lambda loc (xs, body) :: expand rest
203203- | { value = Object{ self; methods }; loc } :: rest ->
203203+ | { value = Object { self; methods }; loc } :: rest ->
204204 let self, methods =
205205 let@ () = Sc.section [] in
206206 let sym = Symbol.fresh () in
···212212 sym, List.map expand_method methods
213213 in
214214 { value = Syn.Object { self; methods }; loc } :: expand rest
215215- | { value = Patch{ obj; self; methods }; loc } :: rest ->
215215+ | { value = Patch { obj; self; methods }; loc } :: rest ->
216216 let self, super, methods =
217217 let@ () = Sc.section [] in
218218 let self_sym = Symbol.fresh () in
···331331 | Some (Term x, ()), _ ->
332332 let relocate Range.{ value; _ } = Range.{ value; loc } in
333333 List.map relocate x
334334- | Some (Xmlns{ xmlns; prefix }, ()), _ ->
334334+ | Some (Xmlns { xmlns; prefix }, ()), _ ->
335335 Reporter.emitf
336336 ?loc
337337 Resolution_error
···347347 | None -> { xmlns = None; prefix = ""; uname }
348348 | Some prefix ->
349349 match Sc.resolve ["xmlns"; prefix] with
350350- | Some (Xmlns{ xmlns; prefix }, ()) ->
350350+ | Some (Xmlns { xmlns; prefix }, ()) ->
351351 { xmlns = Some xmlns; prefix = prefix; uname }
352352 | _ ->
353353 Reporter.emitf
+2-1
lib/compiler/Parse.ml
···121121 let end_position = lexbuf.lex_curr_p in
122122 if is_opening_delim token then
123123 let range = Range.of_lex_range (start_position, end_position) in
124124- Stack.push (token, range) delim_stack; ;
124124+ Stack.push (token, range) delim_stack;
125125+ ;
125126 if is_closing_delim token then
126127 begin
127128 match Stack.top_opt delim_stack with
+1-1
lib/frontend/Forest_reader.ml
···3232 let eval { env; host } job =
3333 let@ () = Reporter.easy_run in
3434 match job with
3535- | Job.LaTeX_to_svg{ hash; source; content } ->
3535+ | Job.LaTeX_to_svg { hash; source; content } ->
3636 let svg = Build_latex.latex_to_svg ~env source in
3737 let frontmatter = T.default_frontmatter ~iri: (Iri_scheme.hash_iri ~host hash) () in
3838 let mainmatter = content ~svg in