2014-12-12 22:59:28 +00:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2017-03-11 11:33:49 +00:00
|
|
|
| PHP Version 7 |
|
2014-12-12 22:59:28 +00:00
|
|
|
+----------------------------------------------------------------------+
|
2015-08-23 13:09:21 +00:00
|
|
|
| Copyright (c) 1997-2015 The PHP Group |
|
2014-12-12 22:59:28 +00:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| http://www.opensource.org/licenses/mit-license.php MIT License |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Jani Taskinen <jani.taskinen@iki.fi> |
|
|
|
|
| Author: Patrick Reilly <preilly@php.net> |
|
2015-08-23 13:09:21 +00:00
|
|
|
| Author: Stefan Siegl <stesie@php.net> |
|
2014-12-12 22:59:28 +00:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef V8JS_EXCEPTIONS_H
|
|
|
|
#define V8JS_EXCEPTIONS_H
|
|
|
|
|
|
|
|
extern zend_class_entry *php_ce_v8js_exception;
|
|
|
|
extern zend_class_entry *php_ce_v8js_script_exception;
|
|
|
|
extern zend_class_entry *php_ce_v8js_time_limit_exception;
|
|
|
|
extern zend_class_entry *php_ce_v8js_memory_limit_exception;
|
|
|
|
|
2017-03-11 12:35:21 +00:00
|
|
|
void v8js_create_script_exception(zval *return_value, v8::Isolate *isolate, v8::TryCatch *try_catch);
|
|
|
|
void v8js_throw_script_exception(v8::Isolate *isolate, v8::TryCatch *try_catch);
|
2014-12-12 22:59:28 +00:00
|
|
|
|
|
|
|
PHP_MINIT_FUNCTION(v8js_exceptions);
|
|
|
|
|
|
|
|
#endif /* V8JS_EXCEPTIONS_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
2016-07-02 20:41:01 +00:00
|
|
|
* indent-tabs-mode: t
|
2014-12-12 22:59:28 +00:00
|
|
|
* End:
|
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
|
|
|
*/
|