package ocamlformat-mlx-lib

  1. Overview
  2. Docs
OCaml .mlx Code Formatter

Install

dune-project
 Dependency

Authors

Maintainers

Sources

ocamlformat-mlx-0.29.0.1.tbz
sha256=c4986e5af3e816e8a1fc130e5c26b4ac13fd60efed05a84449ec014640813273
sha512=fae91c260e9d8ddf2c6c8e7f46caf87329777e40e5c80320bbf942ed849789bca477e054010a71213f6451211be9fe3926923cc1aa7f3ac22db875dfbaa59dc2

doc/src/ocamlformat-mlx-lib.parser_standard/pprintast.ml.html

Source file pprintast.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let tyvar_of_name s =
  if String.length s >= 2 && s.[1] = '\'' then
    (* without the space, this would be parsed as
       a character literal *)
    "' " ^ s
  else if Lexer.is_keyword s then
    "'\\#" ^ s
  else if String.equal s "_" then
    s
  else
    "'" ^ s

module Doc = struct
  let tyvar ppf s =
    Format_doc.fprintf ppf "%s" (tyvar_of_name s)
end

let tyvar ppf v = Format_doc.compat Doc.tyvar ppf v