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

Unified Diff: src/objects.h

Issue 2780173002: [regexp] Add support for dotAll flag (Closed)
Patch Set: Reserve enough space for '.' character range Created 3 years, 9 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: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 28704af616432f63a66dc99d8c69598d34c39d40..6df05b7003488df0623f98ad7a9ceecf8c504eef 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -8243,6 +8243,7 @@ class JSRegExp: public JSObject {
kMultiline = 1 << 2,
kSticky = 1 << 3,
kUnicode = 1 << 4,
+ kDotAll = 1 << 5,
};
typedef base::Flags<Flag> Flags;
« no previous file with comments | « src/heap-symbols.h ('k') | src/objects.cc » ('j') | test/mjsunit/harmony/regexp-dotall.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698