Dune_lang.CstConcrete syntax tree
module Comment = Lexer.Token.Commenttype t = | Atom of Stdune.Loc.t * Atom.t| Quoted_string of Stdune.Loc.t * string| Template of Template.t| List of Stdune.Loc.t * t list| Comment of Stdune.Loc.t * Comment.tval loc : t -> Stdune.Loc.tReplace all the Comment Legacy by Comment (Lines _) by extracting the contents of comments from the original file.
val to_dyn : t -> Stdune.Dyn.tval to_sexp : t -> Dune_lang__.T.t optionval extract_comments : t list -> (Stdune.Loc.t * Comment.t) listReturn all the comments contained in a concrete syntax tree
val tokenize : t list -> (Stdune.Loc.t * Lexer.Token.t) list