Module Textmate.RegExp
type cachedResult
=
{
str : string;
position : int;
matches : Oniguruma.OnigRegExp.Match.t array;
}
type t
=
{
mutable cachedResult : cachedResult option;
raw : string;
regexp : Oniguruma.OnigRegExp.t option;
}