Flow_ast.Literal
module RegExp: { ... };
type t('M) = {
value: value,
raw: string,
comments: option(Syntax.t('M, unit)),
};
and value =
| String(string)
| Boolean(bool)
| Null
| Number(float)
| BigInt(option(int64))
| RegExp(RegExp.t)
;