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

Unified Diff: src/objects.h

Issue 2780173002: [regexp] Add support for dotAll flag (Closed)
Patch Set: Address comments 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
« no previous file with comments | « src/heap-symbols.h ('k') | src/objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 91dc3d04e1da2baea5805d43b3c9520ee1f041ac..2d7d363b5be71190fac9ca18d18a99eb3dad2f45 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -8305,6 +8305,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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698