Module Flow_ast.RegExpLiteral

type t('M) = {
  1. pattern: string,
  2. flags: string,
  3. raw: string,
  4. comments: option(Syntax.t('M, unit)),
};
let pp: (Format.formatter => 'M => unit) => Format.formatter => t('M) => unit;
let show: (Format.formatter => 'M => unit) => t('M) => string;