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

Commit 9d99e7a

Browse files
committed
Rename constants to match PSR-2 convention, closes #34
1 parent de094ec commit 9d99e7a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+159
-151
lines changed

src/php_v8_enums.cc

+23-23
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@ PHP_MINIT_FUNCTION (php_v8_enums) {
4141
this_ce = zend_register_internal_class(&ce);
4242

4343
zend_declare_class_constant_long(this_ce, ZEND_STRL("DEFAULT_ACCESS"), v8::AccessControl::DEFAULT);
44-
zend_declare_class_constant_long(this_ce, ZEND_STRL("ALL_CAN_READ"), v8::AccessControl::ALL_CAN_READ);
45-
zend_declare_class_constant_long(this_ce, ZEND_STRL("ALL_CAN_WRITE"), v8::AccessControl::ALL_CAN_WRITE);
44+
zend_declare_class_constant_long(this_ce, ZEND_STRL("ALL_CAN_READ"), v8::AccessControl::ALL_CAN_READ);
45+
zend_declare_class_constant_long(this_ce, ZEND_STRL("ALL_CAN_WRITE"), v8::AccessControl::ALL_CAN_WRITE);
4646
#undef this_ce
4747

4848
//v8::ConstructorBehavior
4949
#define this_ce php_v8_constructor_behavior_class_entry
5050
INIT_NS_CLASS_ENTRY(ce, PHP_V8_NS, "ConstructorBehavior", php_v8_enum_methods);
5151
this_ce = zend_register_internal_class(&ce);
5252

53-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kThrow"), static_cast<long>(v8::ConstructorBehavior::kThrow));
54-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kAllow"), static_cast<long>(v8::ConstructorBehavior::kAllow));
53+
zend_declare_class_constant_long(this_ce, ZEND_STRL("THROW"), static_cast<long>(v8::ConstructorBehavior::kThrow));
54+
zend_declare_class_constant_long(this_ce, ZEND_STRL("ALLOW"), static_cast<long>(v8::ConstructorBehavior::kAllow));
5555

5656
#undef this_ce
5757

@@ -60,19 +60,19 @@ PHP_MINIT_FUNCTION (php_v8_enums) {
6060
INIT_NS_CLASS_ENTRY(ce, PHP_V8_NS, "IntegrityLevel", php_v8_enum_methods);
6161
this_ce = zend_register_internal_class(&ce);
6262

63-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kFrozen"), static_cast<zend_long>(v8::IntegrityLevel::kFrozen));
64-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kSealed"), static_cast<zend_long>(v8::IntegrityLevel::kSealed));
63+
zend_declare_class_constant_long(this_ce, ZEND_STRL("FROZEN"), static_cast<zend_long>(v8::IntegrityLevel::kFrozen));
64+
zend_declare_class_constant_long(this_ce, ZEND_STRL("SEALED"), static_cast<zend_long>(v8::IntegrityLevel::kSealed));
6565
#undef this_ce
6666

6767
// v8::PropertyAttribute
6868
#define this_ce php_v8_property_attribute_class_entry
6969
INIT_NS_CLASS_ENTRY(ce, PHP_V8_NS, "PropertyAttribute", php_v8_enum_methods);
7070
this_ce = zend_register_internal_class(&ce);
7171

72-
zend_declare_class_constant_long(this_ce, ZEND_STRL("None"), v8::PropertyAttribute::None);
73-
zend_declare_class_constant_long(this_ce, ZEND_STRL("ReadOnly"), v8::PropertyAttribute::ReadOnly);
74-
zend_declare_class_constant_long(this_ce, ZEND_STRL("DontEnum"), v8::PropertyAttribute::DontEnum);
75-
zend_declare_class_constant_long(this_ce, ZEND_STRL("DontDelete"), v8::PropertyAttribute::DontDelete);
72+
zend_declare_class_constant_long(this_ce, ZEND_STRL("NONE"), v8::PropertyAttribute::None);
73+
zend_declare_class_constant_long(this_ce, ZEND_STRL("READ_ONLY"), v8::PropertyAttribute::ReadOnly);
74+
zend_declare_class_constant_long(this_ce, ZEND_STRL("DONT_ENUM"), v8::PropertyAttribute::DontEnum);
75+
zend_declare_class_constant_long(this_ce, ZEND_STRL("DONT_DELETE"), v8::PropertyAttribute::DontDelete);
7676

7777
#undef this_ce
7878

@@ -81,41 +81,41 @@ PHP_MINIT_FUNCTION (php_v8_enums) {
8181
INIT_NS_CLASS_ENTRY(ce, PHP_V8_NS, "PropertyHandlerFlags", php_v8_enum_methods);
8282
this_ce = zend_register_internal_class(&ce);
8383

84-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kNone"), static_cast<zend_long>(v8::PropertyHandlerFlags::kNone));
85-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kAllCanRead"), static_cast<zend_long>(v8::PropertyHandlerFlags::kAllCanRead));
86-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kNonMasking"), static_cast<zend_long>(v8::PropertyHandlerFlags::kNonMasking));
87-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kOnlyInterceptStrings"), static_cast<zend_long>(v8::PropertyHandlerFlags::kOnlyInterceptStrings));
84+
zend_declare_class_constant_long(this_ce, ZEND_STRL("NONE"), static_cast<zend_long>(v8::PropertyHandlerFlags::kNone));
85+
zend_declare_class_constant_long(this_ce, ZEND_STRL("ALL_CAN_READ"), static_cast<zend_long>(v8::PropertyHandlerFlags::kAllCanRead));
86+
zend_declare_class_constant_long(this_ce, ZEND_STRL("NON_MASKING"), static_cast<zend_long>(v8::PropertyHandlerFlags::kNonMasking));
87+
zend_declare_class_constant_long(this_ce, ZEND_STRL("ONLY_INTERCEPT_STRINGS"), static_cast<zend_long>(v8::PropertyHandlerFlags::kOnlyInterceptStrings));
8888
#undef this_ce
8989

9090
// v8::PropertyFilter
9191
#define this_ce php_v8_property_filter_class_entry
9292
INIT_NS_CLASS_ENTRY(ce, PHP_V8_NS, "PropertyFilter", php_v8_enum_methods);
9393
this_ce = zend_register_internal_class(&ce);
9494

95-
zend_declare_class_constant_long(this_ce, ZEND_STRL("ALL_PROPERTIES"), v8::PropertyFilter::ALL_PROPERTIES);
96-
zend_declare_class_constant_long(this_ce, ZEND_STRL("ONLY_WRITABLE"), v8::PropertyFilter::ONLY_WRITABLE);
97-
zend_declare_class_constant_long(this_ce, ZEND_STRL("ONLY_ENUMERABLE"), v8::PropertyFilter::ONLY_ENUMERABLE);
95+
zend_declare_class_constant_long(this_ce, ZEND_STRL("ALL_PROPERTIES"), v8::PropertyFilter::ALL_PROPERTIES);
96+
zend_declare_class_constant_long(this_ce, ZEND_STRL("ONLY_WRITABLE"), v8::PropertyFilter::ONLY_WRITABLE);
97+
zend_declare_class_constant_long(this_ce, ZEND_STRL("ONLY_ENUMERABLE"), v8::PropertyFilter::ONLY_ENUMERABLE);
9898
zend_declare_class_constant_long(this_ce, ZEND_STRL("ONLY_CONFIGURABLE"), v8::PropertyFilter::ONLY_CONFIGURABLE);
99-
zend_declare_class_constant_long(this_ce, ZEND_STRL("SKIP_STRINGS"), v8::PropertyFilter::SKIP_STRINGS);
100-
zend_declare_class_constant_long(this_ce, ZEND_STRL("SKIP_SYMBOLS"), v8::PropertyFilter::SKIP_SYMBOLS);
99+
zend_declare_class_constant_long(this_ce, ZEND_STRL("SKIP_STRINGS"), v8::PropertyFilter::SKIP_STRINGS);
100+
zend_declare_class_constant_long(this_ce, ZEND_STRL("SKIP_SYMBOLS"), v8::PropertyFilter::SKIP_SYMBOLS);
101101
#undef this_ce
102102

103103
// v8::KeyCollectionMode
104104
#define this_ce php_v8_key_collection_mode_class_entry
105105
INIT_NS_CLASS_ENTRY(ce, PHP_V8_NS, "KeyCollectionMode", php_v8_enum_methods);
106106
this_ce = zend_register_internal_class(&ce);
107107

108-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kOwnOnly"), static_cast<zend_long>(v8::KeyCollectionMode::kOwnOnly));
109-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kIncludePrototypes"), static_cast<zend_long>(v8::KeyCollectionMode::kIncludePrototypes));
108+
zend_declare_class_constant_long(this_ce, ZEND_STRL("OWN_ONLY"), static_cast<zend_long>(v8::KeyCollectionMode::kOwnOnly));
109+
zend_declare_class_constant_long(this_ce, ZEND_STRL("INCLUDE_PROTOTYPES"), static_cast<zend_long>(v8::KeyCollectionMode::kIncludePrototypes));
110110
#undef this_ce
111111

112112
// v8::IndexFilter
113113
#define this_ce php_v8_index_filter_class_entry
114114
INIT_NS_CLASS_ENTRY(ce, PHP_V8_NS, "IndexFilter", php_v8_enum_methods);
115115
this_ce = zend_register_internal_class(&ce);
116116

117-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kIncludeIndices"), static_cast<zend_long>(v8::IndexFilter::kIncludeIndices));
118-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kSkipIndices"), static_cast<zend_long>(v8::IndexFilter::kSkipIndices));
117+
zend_declare_class_constant_long(this_ce, ZEND_STRL("INCLUDE_INDICES"), static_cast<zend_long>(v8::IndexFilter::kIncludeIndices));
118+
zend_declare_class_constant_long(this_ce, ZEND_STRL("SKIP_INDICES"), static_cast<zend_long>(v8::IndexFilter::kSkipIndices));
119119
#undef this_ce
120120

121121
return SUCCESS;

src/php_v8_regexp.cc

+6-6
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ PHP_MINIT_FUNCTION(php_v8_regexp) {
116116
INIT_NS_CLASS_ENTRY(ce, "V8\\RegExpObject", "Flags", php_v8_regexp_flags_methods);
117117
php_v8_regexp_flags_class_entry = zend_register_internal_class(&ce);
118118

119-
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("kNone"), v8::RegExp::Flags::kNone);
120-
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("kGlobal"), v8::RegExp::Flags::kGlobal);
121-
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("kIgnoreCase"), v8::RegExp::Flags::kIgnoreCase);
122-
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("kMultiline"), v8::RegExp::Flags::kMultiline);
123-
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("kSticky"), v8::RegExp::Flags::kSticky);
124-
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("kUnicode"), v8::RegExp::Flags::kUnicode);
119+
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("NONE"), v8::RegExp::Flags::kNone);
120+
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("GLOBAL"), v8::RegExp::Flags::kGlobal);
121+
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("IGNORE_CASE"), v8::RegExp::Flags::kIgnoreCase);
122+
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("MULTILINE"), v8::RegExp::Flags::kMultiline);
123+
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("STICKY"), v8::RegExp::Flags::kSticky);
124+
zend_declare_class_constant_long(php_v8_regexp_flags_class_entry, ZEND_STRL("UNICODE"), v8::RegExp::Flags::kUnicode);
125125

126126
return SUCCESS;
127127
}

src/php_v8_script_compiler.cc

+5-5
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,11 @@ PHP_MINIT_FUNCTION(php_v8_script_compiler)
303303
INIT_NS_CLASS_ENTRY(ce, "V8\\ScriptCompiler", "CompileOptions", php_v8_compile_options_methods);
304304
php_v8_compile_options_class_entry = zend_register_internal_class(&ce);
305305

306-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kNoCompileOptions"), v8::ScriptCompiler::CompileOptions::kNoCompileOptions);
307-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kProduceParserCache"), v8::ScriptCompiler::CompileOptions::kProduceParserCache);
308-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kConsumeParserCache"), v8::ScriptCompiler::CompileOptions::kConsumeParserCache);
309-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kProduceCodeCache"), v8::ScriptCompiler::CompileOptions::kProduceCodeCache);
310-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kConsumeCodeCache"), v8::ScriptCompiler::CompileOptions::kConsumeCodeCache);
306+
zend_declare_class_constant_long(this_ce, ZEND_STRL("NO_COMPILE_OPTIONS"), v8::ScriptCompiler::CompileOptions::kNoCompileOptions);
307+
zend_declare_class_constant_long(this_ce, ZEND_STRL("PRODUCE_PARSER_CACHE"), v8::ScriptCompiler::CompileOptions::kProduceParserCache);
308+
zend_declare_class_constant_long(this_ce, ZEND_STRL("CONSUME_PARSER_CACHE"), v8::ScriptCompiler::CompileOptions::kConsumeParserCache);
309+
zend_declare_class_constant_long(this_ce, ZEND_STRL("PRODUCE_CODE_CACHE"), v8::ScriptCompiler::CompileOptions::kProduceCodeCache);
310+
zend_declare_class_constant_long(this_ce, ZEND_STRL("CONSUME_CODE_CACHE"), v8::ScriptCompiler::CompileOptions::kConsumeCodeCache);
311311

312312
return SUCCESS;
313313
}

src/php_v8_string.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ PHP_MINIT_FUNCTION(php_v8_string)
166166
INIT_NS_CLASS_ENTRY(ce, PHP_V8_NS, "StringValue", php_v8_string_methods);
167167
this_ce = zend_register_internal_class_ex(&ce, php_v8_name_class_entry);
168168

169-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kMaxLength"), v8::String::kMaxLength);
169+
zend_declare_class_constant_long(this_ce, ZEND_STRL("MAX_LENGTH"), v8::String::kMaxLength);
170170

171171
return SUCCESS;
172172
}

stubs/src/AccessControl.php

-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ class AccessControl
2020
const DEFAULT_ACCESS = 0; // do not allow cross-context access
2121
const ALL_CAN_READ = 1; // all cross-context reads are allowed
2222
const ALL_CAN_WRITE = 2; // all cross-context writes are allowed
23-
// ALL_CAN_READ | ALL_CAN_WRITE could be use allow all cross-context access
2423
}

stubs/src/ConstructorBehavior.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818

1919
class ConstructorBehavior
2020
{
21-
const kThrow = 0;
22-
const kAllow = 1;
21+
const THROW = 0;
22+
const ALLOW = 1;
2323
}

stubs/src/FunctionObject.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class FunctionObject extends ObjectValue
3030
* @param int $length
3131
* @param int $behavior
3232
*/
33-
public function __construct(Context $context, callable $callback, int $length = 0, int $behavior = ConstructorBehavior::kAllow)
33+
public function __construct(Context $context, callable $callback, int $length = 0, int $behavior = ConstructorBehavior::ALLOW)
3434
{
3535
parent::__construct($context);
3636
}

stubs/src/FunctionTemplate.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public function __construct(
129129
callable $callback = null,
130130
FunctionTemplate $receiver = null,
131131
int $length = 0,
132-
int $behavior = ConstructorBehavior::kAllow
132+
int $behavior = ConstructorBehavior::ALLOW
133133
) {
134134
parent::__construct($isolate);
135135
}

stubs/src/IndexedPropertyHandlerConfiguration.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __construct(
3232
callable $query = null,
3333
callable $deleter = null,
3434
callable $enumerator = null,
35-
$flags = PropertyHandlerFlags::kNone
35+
$flags = PropertyHandlerFlags::NONE
3636
) {
3737
}
3838
}

stubs/src/IntegrityLevel.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
*/
2121
class IntegrityLevel
2222
{
23-
const kFrozen = 0;
24-
const kSealed = 1;
23+
const FROZEN = 0;
24+
const SEALED = 1;
2525
}

stubs/src/NamedPropertyHandlerConfiguration.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function __construct(
4747
callable $query = null,
4848
callable $deleter = null,
4949
callable $enumerator = null,
50-
$flags = PropertyHandlerFlags::kNone
50+
$flags = PropertyHandlerFlags::NONE
5151
) {
5252
}
5353
}

stubs/src/ObjectTemplate.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function setAccessor(
7272
callable $getter,
7373
callable $setter,
7474
$settings = AccessControl::DEFAULT_ACCESS,
75-
$attributes = PropertyAttribute::None,
75+
$attributes = PropertyAttribute::NONE,
7676
FunctionTemplate $receiver
7777
) {
7878
}

stubs/src/ObjectValue.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function defineOwnProperty(
7878
Context $context,
7979
NameValue $key,
8080
Value $value,
81-
int $attributes = PropertyAttribute::None
81+
int $attributes = PropertyAttribute::NONE
8282
): bool {
8383
}
8484

@@ -154,7 +154,7 @@ public function setAccessor(
154154
callable $getter,
155155
callable $setter = null,
156156
int $settings = AccessControl::DEFAULT_ACCESS,
157-
int $attributes = PropertyAttribute::None
157+
int $attributes = PropertyAttribute::NONE
158158
): bool {
159159
}
160160

@@ -169,7 +169,7 @@ public function setAccessorProperty(
169169
NameValue $name,
170170
FunctionObject $getter,
171171
FunctionObject $setter = null,
172-
int $attributes = PropertyAttribute::None,
172+
int $attributes = PropertyAttribute::NONE,
173173
int $settings = AccessControl::DEFAULT_ACCESS
174174
) {
175175
}
@@ -191,7 +191,7 @@ public function setNativeDataProperty(
191191
NameValue $name,
192192
callable $getter,
193193
callable $setter = null,
194-
int $attributes = PropertyAttribute::None
194+
int $attributes = PropertyAttribute::NONE
195195
): bool {
196196
}
197197

stubs/src/PropertyAttribute.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
class PropertyAttribute
2020
{
21-
const None = 0;
22-
const ReadOnly = 1;
23-
const DontEnum = 2;
24-
const DontDelete = 4;
21+
const NONE = 0;
22+
const READ_ONLY = 1;
23+
const DONT_ENUM = 2;
24+
const DONT_DELETE = 4;
2525
}

stubs/src/PropertyFilter.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
*/
2121
class PropertyFilter
2222
{
23-
const ALL_PROPERTIES = 0;
24-
const ONLY_WRITABLE = 1;
25-
const ONLY_ENUMERABLE = 2;
23+
const ALL_PROPERTIES = 0;
24+
const ONLY_WRITABLE = 1;
25+
const ONLY_ENUMERABLE = 2;
2626
const ONLY_CONFIGURABLE = 4;
27-
const SKIP_STRINGS = 8;
28-
const SKIP_SYMBOLS = 16;
27+
const SKIP_STRINGS = 8;
28+
const SKIP_SYMBOLS = 16;
2929
}

stubs/src/PropertyHandlerFlags.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ class PropertyHandlerFlags
2525
/**
2626
* None.
2727
*/
28-
const kNone = 0;
28+
const NONE = 0;
2929
/**
3030
* See \V8\AccessControl::ALL_CAN_READ (all cross-context reads are allowed).
3131
*/
32-
const kAllCanRead = 1;
32+
const ALL_CAN_READ = 1;
3333
/** Will not call into interceptor for properties on the receiver or prototype
3434
* chain, i.e., only call into interceptor for properties that do not exist.
3535
* Currently only valid for named interceptors.
3636
*/
37-
const kNonMasking = 2;
37+
const NON_MASKING = 2;
3838
/**
3939
* Will not call into interceptor for symbol lookup. Only meaningful for
4040
* named interceptors.
4141
*/
42-
const kOnlyInterceptStrings = 4;
42+
const ONLY_INTERCEPT_STRINGS = 4;
4343
}

stubs/src/RegExp/Flags.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818

1919
class Flags
2020
{
21-
const kNone = 0;
22-
const kGlobal = 1;
23-
const kIgnoreCase = 2;
24-
const kMultiline = 4;
25-
const kSticky = 8;
26-
const kUnicode = 16;
21+
const NONE = 0;
22+
const GLOBAL = 1;
23+
const IGNORE_CASE = 2;
24+
const MULTILINE = 4;
25+
const STICKY = 8;
26+
const UNICODE = 16;
2727
}

stubs/src/RegExpObject.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class RegExpObject extends ObjectValue
2424
* @param StringValue $pattern
2525
* @param int $flags
2626
*/
27-
public function __construct(Context $context, StringValue $pattern, int $flags = RegExpObject\Flags::kNone)
27+
public function __construct(Context $context, StringValue $pattern, int $flags = RegExpObject\Flags::NONE)
2828
{
2929
parent::__construct($context);
3030
}

stubs/src/ScriptCompiler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static function cachedDataVersionTag(): int
5959
*
6060
* @return UnboundScript
6161
*/
62-
public static function compileUnboundScript(Context $context, Source $source, int $options = CompileOptions::kNoCompileOptions): UnboundScript
62+
public static function compileUnboundScript(Context $context, Source $source, int $options = CompileOptions::NO_COMPILE_OPTIONS): UnboundScript
6363
{
6464
}
6565

@@ -80,7 +80,7 @@ public static function compileUnboundScript(Context $context, Source $source, in
8080
*
8181
* @return Script
8282
*/
83-
public static function compile(Context $context, Source $source, int $options = CompileOptions::kNoCompileOptions): Script
83+
public static function compile(Context $context, Source $source, int $options = CompileOptions::NO_COMPILE_OPTIONS): Script
8484
{
8585
}
8686

stubs/src/ScriptCompiler/CompileOptions.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
class CompileOptions
88
{
9-
const kNoCompileOptions = 0;
10-
const kProduceParserCache = 1;
11-
const kConsumeParserCache = 2;
12-
const kProduceCodeCache = 3;
13-
const kConsumeCodeCache = 4;
9+
const NO_COMPILE_OPTIONS = 0;
10+
const PRODUCE_PARSER_CACHE = 1;
11+
const CONSUME_PARSER_CACHE = 2;
12+
const PRODUCE_CODE_CACHE = 3;
13+
const CONSUME_CODE_CACHE = 4;
1414
}

stubs/src/StringValue.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
class StringValue extends NameValue
2323
{
24-
const kMaxLength = (1 << 28) - 16;
24+
const MAX_LENGTH = (1 << 28) - 16;
2525

2626
/**
2727
* @param Isolate $isolate

0 commit comments

Comments
 (0)