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

Unified Diff: include/v8.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 | « no previous file | src/assembler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 910735cf854d4f005bd61f45b2fd6cb76d7dfc29..f45d3f42bb5d25a5be863d923bfe9c7e536b5576 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -4692,11 +4692,12 @@ class V8_EXPORT RegExp : public Object {
*/
enum Flags {
kNone = 0,
- kGlobal = 1,
- kIgnoreCase = 2,
- kMultiline = 4,
- kSticky = 8,
- kUnicode = 16
+ kGlobal = 1 << 0,
+ kIgnoreCase = 1 << 1,
+ kMultiline = 1 << 2,
+ kSticky = 1 << 3,
+ kUnicode = 1 << 4,
+ kDotAll = 1 << 5,
};
/**
« no previous file with comments | « no previous file | src/assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698