phpv8 / php-v8

PHP extension for V8 JavaScript engine
https://php-v8.readthedocs.io
MIT License
217 stars 14 forks source link

Refactor ScriptOriginOptions to use bit field #42

Closed pinepain closed 7 years ago

pinepain commented 7 years ago

It's annoying to have so many boolean args for such primitive thing. As we are walking away to be 1 to 1 binding to V8 C++ API (it's a matter of common sense if you would ask), we don't need this anymore.

ScriptOrigin and ScriptOriginOptions are affected.