Module Js_raw_info

type exp =
  1. | Js_function of {
    1. arity: int,
    2. arrow: bool,
    }
  2. | Js_literal of {
    1. comment: option(string),
    }
  3. | Js_exp_unknown
;
type raw_kind =
  1. | Raw_re
  2. | Raw_exp
  3. | Raw_program
;
type stmt =
  1. | Js_stmt_comment
  2. | Js_stmt_unknown
;
type code_info =
  1. | Exp(exp)
  2. | Stmt(stmt)
;
type t = {
  1. code: string,
  2. code_info: code_info,
};