package dune-private-libs

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Concrete syntax tree

module Comment = Lexer.Token.Comment
type t =
  1. | Atom of Stdune.Loc.t * Atom.t
  2. | Quoted_string of Stdune.Loc.t * string
  3. | Template of Template.t
  4. | List of Stdune.Loc.t * t list
  5. | Comment of Stdune.Loc.t * Comment.t
val loc : t -> Stdune.Loc.t
val fetch_legacy_comments : t -> file_contents:string -> t

Replace all the Comment Legacy by Comment (Lines _) by extracting the contents of comments from the original file.

val abstract : t -> Ast.t option
val concrete : Ast.t -> t
val to_dyn : t -> Stdune.Dyn.t
val to_sexp : t -> Dune_lang__.T.t option
val extract_comments : t list -> (Stdune.Loc.t * Comment.t) list

Return all the comments contained in a concrete syntax tree

val tokenize : t list -> (Stdune.Loc.t * Lexer.Token.t) list