Lines Matching full:regexp
965 // Emits the source code of a regexp. Used by regexp events.
966 void LogRegExpSource(Handle<JSRegExp> regexp, Isolate* isolate,
972 Object::GetProperty(isolate, regexp, "source").ToHandleChecked();
978 switch (regexp->TypeTag()) {
991 Object::GetProperty(isolate, regexp, "global").ToHandleChecked();
997 Object::GetProperty(isolate, regexp, "ignoreCase").ToHandleChecked();
1003 Object::GetProperty(isolate, regexp, "multiline").ToHandleChecked();
1011 void Logger::RegExpCompileEvent(Handle<JSRegExp> regexp, bool in_cache) {
1014 msg.Append("regexp-compile,");
1015 LogRegExpSource(regexp, isolate_, &msg);
1622 case Code::REGEXP: