Js_parser.Lex_result
type t = {
lex_token : Token.t;
lex_loc : Loc.t;
lex_errors : (Loc.t * Parse_error.t) list;
lex_comments : Loc.t Flow_ast.Comment.t list;
}
val comments : t -> Loc.t Flow_ast.Comment.t list
val errors : t -> (Loc.t * Parse_error.t) list
val debug_string_of_lex_result : t -> string