OCaml 4.04.0 added support for extension points on ; in sequences. ocp-indent would, ideally, indent code using this form in the same way that it indents ;-using sequences without extensions. This would be consistent with ocp-indent's handling of other extension-carrying syntax.
(* Ideal result *)
let () =
();%ext
()
(* Current result as of ocp-indent 1.5.3 *)
let () =
();%ext
()
OCaml 4.04.0 added support for extension points on
;
in sequences. ocp-indent would, ideally, indent code using this form in the same way that it indents;
-using sequences without extensions. This would be consistent with ocp-indent's handling of other extension-carrying syntax.