@@ -29,7 +29,7 @@ extern "C" {
29
29
}
30
30
31
31
static zval v8js_array_access_dispatch (zend_object *object, const char *method_name, int param_count,
32
- uint32_t index, zval zvalue TSRMLS_DC ) /* {{{ */
32
+ uint32_t index, zval zvalue) /* {{{ */
33
33
{
34
34
zend_fcall_info fci;
35
35
zval php_value;
@@ -52,7 +52,7 @@ static zval v8js_array_access_dispatch(zend_object *object, const char *method_n
52
52
fci.object = object;
53
53
fci.no_separation = 0 ;
54
54
55
- zend_call_function (&fci, NULL TSRMLS_CC );
55
+ zend_call_function (&fci, NULL );
56
56
zval_dtor (&fci.function_name );
57
57
return php_value;
58
58
}
@@ -72,8 +72,8 @@ void v8js_array_access_getter(uint32_t index, const v8::PropertyCallbackInfo<v8:
72
72
zval zvalue;
73
73
ZVAL_UNDEF (&zvalue);
74
74
75
- zval php_value = v8js_array_access_dispatch (object, " offsetGet" , 1 , index , zvalue TSRMLS_CC );
76
- v8::Local<v8::Value> ret_value = zval_to_v8js (&php_value, isolate TSRMLS_CC );
75
+ zval php_value = v8js_array_access_dispatch (object, " offsetGet" , 1 , index , zvalue);
76
+ v8::Local<v8::Value> ret_value = zval_to_v8js (&php_value, isolate);
77
77
zval_ptr_dtor (&php_value);
78
78
79
79
info.GetReturnValue ().Set (ret_value);
@@ -93,12 +93,12 @@ void v8js_array_access_setter(uint32_t index, v8::Local<v8::Value> value,
93
93
zval zvalue;
94
94
ZVAL_UNDEF (&zvalue);
95
95
96
- if (v8js_to_zval (value, &zvalue, 0 , isolate TSRMLS_CC ) != SUCCESS) {
96
+ if (v8js_to_zval (value, &zvalue, 0 , isolate) != SUCCESS) {
97
97
info.GetReturnValue ().Set (v8::Local<v8::Value>());
98
98
return ;
99
99
}
100
100
101
- zval php_value = v8js_array_access_dispatch (object, " offsetSet" , 2 , index , zvalue TSRMLS_CC );
101
+ zval php_value = v8js_array_access_dispatch (object, " offsetSet" , 2 , index , zvalue);
102
102
zval_ptr_dtor (&php_value);
103
103
104
104
/* simply pass back the value to tell we intercepted the call
@@ -112,15 +112,15 @@ void v8js_array_access_setter(uint32_t index, v8::Local<v8::Value> value,
112
112
/* }}} */
113
113
114
114
115
- static int v8js_array_access_get_count_result (zend_object *object TSRMLS_DC ) /* {{{ */
115
+ static int v8js_array_access_get_count_result (zend_object *object) /* {{{ */
116
116
{
117
117
zval zvalue;
118
118
ZVAL_UNDEF (&zvalue);
119
119
120
- zval php_value = v8js_array_access_dispatch (object, " count" , 0 , 0 , zvalue TSRMLS_CC );
120
+ zval php_value = v8js_array_access_dispatch (object, " count" , 0 , 0 , zvalue);
121
121
122
122
if (Z_TYPE (php_value) != IS_LONG) {
123
- php_error_docref (NULL TSRMLS_CC , E_WARNING, " Non-numeric return value from count() method" );
123
+ php_error_docref (NULL , E_WARNING, " Non-numeric return value from count() method" );
124
124
zval_ptr_dtor (&php_value);
125
125
return 0 ;
126
126
}
@@ -137,15 +137,15 @@ static int v8js_array_access_get_count_result(zend_object *object TSRMLS_DC) /*
137
137
}
138
138
/* }}} */
139
139
140
- static bool v8js_array_access_isset_p (zend_object *object, int index TSRMLS_DC ) /* {{{ */
140
+ static bool v8js_array_access_isset_p (zend_object *object, int index) /* {{{ */
141
141
{
142
142
zval zvalue;
143
143
ZVAL_UNDEF (&zvalue);
144
144
145
- zval php_value = v8js_array_access_dispatch (object, " offsetExists" , 1 , index , zvalue TSRMLS_CC );
145
+ zval php_value = v8js_array_access_dispatch (object, " offsetExists" , 1 , index , zvalue);
146
146
147
147
if (Z_TYPE (php_value) != IS_TRUE && Z_TYPE (php_value) != IS_FALSE) {
148
- php_error_docref (NULL TSRMLS_CC , E_WARNING, " Non-boolean return value from offsetExists() method" );
148
+ php_error_docref (NULL , E_WARNING, " Non-boolean return value from offsetExists() method" );
149
149
zval_ptr_dtor (&php_value);
150
150
return false ;
151
151
}
@@ -164,7 +164,7 @@ static void v8js_array_access_length(v8::Local<v8::String> property, const v8::P
164
164
165
165
zend_object *object = reinterpret_cast <zend_object *>(self->GetAlignedPointerFromInternalField (1 ));
166
166
167
- int length = v8js_array_access_get_count_result (object TSRMLS_CC );
167
+ int length = v8js_array_access_get_count_result (object);
168
168
info.GetReturnValue ().Set (V8JS_INT (length));
169
169
}
170
170
/* }}} */
@@ -181,7 +181,7 @@ void v8js_array_access_deleter(uint32_t index, const v8::PropertyCallbackInfo<v8
181
181
zval zvalue;
182
182
ZVAL_UNDEF (&zvalue);
183
183
184
- zval php_value = v8js_array_access_dispatch (object, " offsetUnset" , 1 , index , zvalue TSRMLS_CC );
184
+ zval php_value = v8js_array_access_dispatch (object, " offsetUnset" , 1 , index , zvalue);
185
185
zval_ptr_dtor (&php_value);
186
186
187
187
info.GetReturnValue ().Set (V8JS_BOOL (true ));
@@ -199,7 +199,7 @@ void v8js_array_access_query(uint32_t index, const v8::PropertyCallbackInfo<v8::
199
199
200
200
/* If index is set, then return an integer encoding a v8::PropertyAttribute;
201
201
* otherwise we're expected to return an empty handle. */
202
- if (v8js_array_access_isset_p (object, index TSRMLS_CC )) {
202
+ if (v8js_array_access_isset_p (object, index )) {
203
203
info.GetReturnValue ().Set (V8JS_UINT (v8::PropertyAttribute::None));
204
204
}
205
205
}
@@ -215,13 +215,13 @@ void v8js_array_access_enumerator(const v8::PropertyCallbackInfo<v8::Array>& inf
215
215
216
216
zend_object *object = reinterpret_cast <zend_object *>(self->GetAlignedPointerFromInternalField (1 ));
217
217
218
- int length = v8js_array_access_get_count_result (object TSRMLS_CC );
218
+ int length = v8js_array_access_get_count_result (object);
219
219
v8::Local<v8::Array> result = v8::Array::New (isolate, length);
220
220
221
221
int i = 0 ;
222
222
223
223
for (int j = 0 ; j < length; j ++) {
224
- if (v8js_array_access_isset_p (object, j TSRMLS_CC )) {
224
+ if (v8js_array_access_isset_p (object, j)) {
225
225
result->Set (i ++, V8JS_INT (j));
226
226
}
227
227
}
0 commit comments