Module Token.Comment

type t =
| Lines of string list

The following comment:

; abc ; def

is represented as:

Lines [ " abc"; " def" ] 
| Legacy

Legacy for jbuild files: either block comments or sexp comments. The programmer is responsible for fetching the comment contents using the location.

val to_dyn : t -> Stdune.Dyn.t