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

Commit 9cb8880

Browse files
committed
Remove UnboundScript::kNoScriptId const and return null in getId() on no data, leftover from #40
1 parent c6255d4 commit 9cb8880

4 files changed

+8
-17
lines changed

src/php_v8_unbound_script.cc

+5-2
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,10 @@ static PHP_METHOD(UnboundScript, getId)
130130

131131
v8::Local<v8::UnboundScript> local_unbound_script = php_v8_unbound_script_get_local(php_v8_unbound_script);
132132

133+
if (v8::UnboundScript::kNoScriptId == local_unbound_script->GetId()) {
134+
RETURN_NULL();
135+
}
136+
133137
RETURN_LONG(static_cast<zend_long>(local_unbound_script->GetId()));
134138
}
135139

@@ -204,7 +208,7 @@ PHP_V8_ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_bindToContext, ZEND_RETURN
204208
ZEND_ARG_OBJ_INFO(0, context, V8\\Context, 0)
205209
ZEND_END_ARG_INFO()
206210

207-
PHP_V8_ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_getId, ZEND_RETURN_VALUE, 0, IS_LONG, 0)
211+
PHP_V8_ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_getId, ZEND_RETURN_VALUE, 0, IS_LONG, 1)
208212
ZEND_END_ARG_INFO()
209213

210214
PHP_V8_ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_getScriptName, ZEND_RETURN_VALUE, 0, V8\\Value, 0)
@@ -244,7 +248,6 @@ PHP_MINIT_FUNCTION(php_v8_unbound_script)
244248
this_ce->create_object = php_v8_unbound_script_ctor;
245249

246250
zend_declare_property_null(this_ce, ZEND_STRL("isolate"), ZEND_ACC_PRIVATE);
247-
zend_declare_class_constant_long(this_ce, ZEND_STRL("kNoScriptId"), v8::UnboundScript::kNoScriptId);
248251

249252
memcpy(&php_v8_unbound_script_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
250253

stubs/src/UnboundScript.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
*/
99
class UnboundScript
1010
{
11-
const kNoScriptId = 0;
12-
1311
private function __construct()
1412
{
1513
}
@@ -26,9 +24,9 @@ public function bindToContext(Context $context): Script
2624
}
2725

2826
/**
29-
* @return int
27+
* @return null|int
3028
*/
31-
public function getId(): int
29+
public function getId(): ?int
3230
{
3331
}
3432

tests/001-verify_extension_entities.phpt

+1-2
Original file line numberDiff line numberDiff line change
@@ -376,12 +376,11 @@ class V8\Script
376376
public function getUnboundScript(): V8\UnboundScript
377377

378378
class V8\UnboundScript
379-
const kNoScriptId = 0
380379
private $isolate
381380
private function __construct()
382381
public function getIsolate(): V8\Isolate
383382
public function bindToContext(V8\Context $context): V8\Script
384-
public function getId(): int
383+
public function getId(): ?int
385384
public function getScriptName(): V8\Value
386385
public function getSourceURL(): V8\Value
387386
public function getSourceMappingURL(): V8\Value

tests/UnboundScript.phpt

-9
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ $helper->header('UnboundScript representation');
3232
$helper->dump($unbound);
3333
$helper->space();
3434

35-
$helper->header('Class constants');
36-
$helper->dump_object_constants($unbound);
37-
$helper->space();
38-
3935
$helper->header('Accessors');
4036
$helper->method_matches($unbound, 'getIsolate', $isolate);
4137
$helper->method_matches_instanceof($unbound, 'bindToContext', V8\Script::class, [$context]);
@@ -77,11 +73,6 @@ object(V8\UnboundScript)#6 (1) {
7773
}
7874

7975

80-
Class constants:
81-
----------------
82-
V8\UnboundScript::kNoScriptId = 0
83-
84-
8576
Accessors:
8677
----------
8778
V8\UnboundScript::getIsolate() matches expected value

0 commit comments

Comments
 (0)