Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(636)

Unified Diff: runtime/lib/regexp.cc

Issue 1071713003: - Remove JSCRE from the runtime. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/lib/regexp.cc
===================================================================
--- runtime/lib/regexp.cc (revision 44981)
+++ runtime/lib/regexp.cc (working copy)
@@ -10,12 +10,9 @@
#include "vm/regexp_parser.h"
#include "vm/thread.h"
-#include "lib/regexp_jsc.h"
-
namespace dart {
DECLARE_FLAG(bool, trace_irregexp);
-DEFINE_FLAG(bool, use_jscre, false, "Use the JSCRE regular expression engine");
DEFINE_NATIVE_ENTRY(JSSyntaxRegExp_factory, 4) {
@@ -28,9 +25,6 @@
bool ignore_case = handle_case_sensitive.raw() != Bool::True().raw();
bool multi_line = handle_multi_line.raw() == Bool::True().raw();
- if (FLAG_use_jscre) {
- return Jscre::Compile(pattern, multi_line, ignore_case);
- }
// Parse the pattern once in order to throw any format exceptions within
// the factory constructor. It is parsed again upon compilation.
RegExpCompileData compileData;
@@ -91,10 +85,6 @@
GET_NON_NULL_NATIVE_ARGUMENT(String, str, arguments->NativeArgAt(1));
GET_NON_NULL_NATIVE_ARGUMENT(Smi, start_index, arguments->NativeArgAt(2));
- if (FLAG_use_jscre) {
- return Jscre::Execute(regexp, str, start_index.Value());
- }
-
// This function is intrinsified. See Intrinsifier::JSRegExp_ExecuteMatch.
const intptr_t cid = str.GetClassId();

Powered by Google App Engine
This is Rietveld 408576698