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

Commit c460a09

Browse files
committed
Move enums into single file or parent class
1 parent 7d1f899 commit c460a09

38 files changed

+496
-829
lines changed

config.m4

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ if test "$PHP_V8" != "no"; then
149149
PHP_NEW_EXTENSION(v8, [ \
150150
v8.cc \
151151
src/php_v8_a.cc \
152+
src/php_v8_enums.cc \
152153
src/php_v8_exception.cc \
153154
src/php_v8_ext_mem_interface.cc \
154155
src/php_v8_try_catch.cc \
@@ -166,11 +167,9 @@ if test "$PHP_V8" != "no"; then
166167
src/php_v8_context.cc \
167168
src/php_v8_object_template.cc \
168169
src/php_v8_function_template.cc \
169-
src/php_v8_constructor_behavior.cc \
170170
src/php_v8_script.cc \
171171
src/php_v8_unbound_script.cc \
172172
src/php_v8_cached_data.cc \
173-
src/php_v8_compile_options.cc \
174173
src/php_v8_script_compiler.cc \
175174
src/php_v8_source.cc \
176175
src/php_v8_data.cc \
@@ -185,7 +184,6 @@ if test "$PHP_V8" != "no"; then
185184
src/php_v8_integer.cc \
186185
src/php_v8_int32.cc \
187186
src/php_v8_uint32.cc \
188-
src/php_v8_integrity_level.cc \
189187
src/php_v8_object.cc \
190188
src/php_v8_function.cc \
191189
src/php_v8_array.cc \
@@ -197,17 +195,13 @@ if test "$PHP_V8" != "no"; then
197195
src/php_v8_boolean_object.cc \
198196
src/php_v8_string_object.cc \
199197
src/php_v8_symbol_object.cc \
200-
src/php_v8_property_attribute.cc \
201198
src/php_v8_template.cc \
202199
src/php_v8_return_value.cc \
203200
src/php_v8_callback_info.cc \
204201
src/php_v8_function_callback_info.cc \
205202
src/php_v8_property_callback_info.cc \
206-
src/php_v8_access_control.cc \
207-
src/php_v8_property_handler_flags.cc \
208203
src/php_v8_named_property_handler_configuration.cc \
209204
src/php_v8_indexed_property_handler_configuration.cc \
210-
src/php_v8_access_type.cc \
211205
], $ext_shared, , -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
212206

213207
PHP_ADD_BUILD_DIR($ext_builddir/src)

src/php_v8_access_control.cc

Lines changed: 0 additions & 38 deletions
This file was deleted.

src/php_v8_access_control.h

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/php_v8_access_type.cc

Lines changed: 0 additions & 41 deletions
This file was deleted.

src/php_v8_access_type.h

Lines changed: 0 additions & 36 deletions
This file was deleted.

src/php_v8_compile_options.cc

Lines changed: 0 additions & 40 deletions
This file was deleted.

src/php_v8_compile_options.h

Lines changed: 0 additions & 39 deletions
This file was deleted.

src/php_v8_constructor_behavior.cc

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/php_v8_constructor_behavior.h

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)