Ast.Info
Information about the Ast, to move to lang
type t = {
range : Range.t;
name : Name.t With_range.t;
kind : int;
detail : string option;
children : t list option;
}
val make :
range:Range.t ->
name:Name.t With_range.t ->
kind:int ->
?detail:string ->
?children:t list ->
unit ->
t