Skip to content
This repository was archived by the owner on Mar 29, 2024. It is now read-only.

Commit 371b354

Browse files
committed
Add support for regexp dotAll flag, closes #54
1 parent efffa83 commit 371b354

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/php_v8_regexp.cc

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ PHP_MINIT_FUNCTION(php_v8_regexp) {
125125
zend_declare_class_constant_long(this_ce, ZEND_STRL("MULTILINE"), v8::RegExp::Flags::kMultiline);
126126
zend_declare_class_constant_long(this_ce, ZEND_STRL("STICKY"), v8::RegExp::Flags::kSticky);
127127
zend_declare_class_constant_long(this_ce, ZEND_STRL("UNICODE"), v8::RegExp::Flags::kUnicode);
128+
zend_declare_class_constant_long(this_ce, ZEND_STRL("DOTALL"), v8::RegExp::Flags::kDotAll);
128129

129130
return SUCCESS;
130131
}

stubs/src/RegExp/Flags.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ class Flags
2424
const MULTILINE = 4;
2525
const STICKY = 8;
2626
const UNICODE = 16;
27+
const DOTALL = 32;
2728
}

tests/001-verify_extension_entities.phpt

+1
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,7 @@ final class V8\RegExpObject\Flags
770770
const MULTILINE = 4
771771
const STICKY = 8
772772
const UNICODE = 16
773+
const DOTALL = 32
773774

774775
class V8\PromiseObject
775776
extends V8\ObjectValue

tests/002-enums.phpt

+1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ V8\RegExpObject\Flags::IGNORE_CASE = 2
167167
V8\RegExpObject\Flags::MULTILINE = 4
168168
V8\RegExpObject\Flags::STICKY = 8
169169
V8\RegExpObject\Flags::UNICODE = 16
170+
V8\RegExpObject\Flags::DOTALL = 32
170171

171172

172173
Object representation:

0 commit comments

Comments
 (0)