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

Unified Diff: src/jsregexp.cc

Issue 6613005: Implementation of strict mode in SetElement. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: SetElement in strict mode. Created 9 years, 10 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
« src/handles.cc ('K') | « src/ic.cc ('k') | src/liveedit.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/jsregexp.cc
diff --git a/src/jsregexp.cc b/src/jsregexp.cc
index 8e7c35f582a54408685fc7447bd9e35971b8430e..893ff5578132c022cd81b8ffcf6cb11d68e3ec4c 100644
--- a/src/jsregexp.cc
+++ b/src/jsregexp.cc
@@ -98,8 +98,8 @@ static inline void ThrowRegExpException(Handle<JSRegExp> re,
Handle<String> error_text,
const char* message) {
Handle<JSArray> array = Factory::NewJSArray(2);
- SetElement(array, 0, pattern);
- SetElement(array, 1, error_text);
+ SetElement(array, 0, pattern, kNonStrictMode);
+ SetElement(array, 1, error_text, kNonStrictMode);
Handle<Object> regexp_err = Factory::NewSyntaxError(message, array);
Top::Throw(*regexp_err);
}
@@ -326,10 +326,11 @@ bool RegExpImpl::CompileIrregexp(Handle<JSRegExp> re, bool is_ascii) {
if (result.error_message != NULL) {
// Unable to compile regexp.
Handle<JSArray> array = Factory::NewJSArray(2);
- SetElement(array, 0, pattern);
+ SetElement(array, 0, pattern, kNonStrictMode);
SetElement(array,
1,
- Factory::NewStringFromUtf8(CStrVector(result.error_message)));
+ Factory::NewStringFromUtf8(CStrVector(result.error_message)),
+ kNonStrictMode);
Handle<Object> regexp_err =
Factory::NewSyntaxError("malformed_regexp", array);
Top::Throw(*regexp_err);
« src/handles.cc ('K') | « src/ic.cc ('k') | src/liveedit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698