- Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathzend_inheritance.h
47 lines (36 loc) · 2.43 KB
/
zend_inheritance.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
| Copyright (c) Zend Technologies Ltd. (http://www.zend.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 2.00 of the Zend license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.zend.com/license/2_00.txt. |
| If you did not receive a copy of the Zend license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@zend.com so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@php.net> |
| Zeev Suraski <zeev@php.net> |
+----------------------------------------------------------------------+
*/
#ifndefZEND_INHERITANCE_H
#defineZEND_INHERITANCE_H
#include"zend.h"
BEGIN_EXTERN_C()
ZEND_APIvoidzend_do_implement_interface(zend_class_entry*ce, zend_class_entry*iface);
ZEND_APIvoidzend_do_inheritance_ex(zend_class_entry*ce, zend_class_entry*parent_ce, boolchecked);
staticzend_always_inlinevoidzend_do_inheritance(zend_class_entry*ce, zend_class_entry*parent_ce) {
zend_do_inheritance_ex(ce, parent_ce, 0);
}
ZEND_APIzend_class_entry*zend_do_link_class(zend_class_entry*ce, zend_string*lc_parent_name, zend_string*key);
voidzend_verify_abstract_class(zend_class_entry*ce);
voidzend_build_properties_info_table(zend_class_entry*ce);
ZEND_APIzend_class_entry*zend_try_early_bind(zend_class_entry*ce, zend_class_entry*parent_ce, zend_string*lcname, zval*delayed_early_binding);
voidzend_inheritance_check_override(zend_class_entry*ce);
ZEND_APIexternzend_class_entry* (*zend_inheritance_cache_get)(zend_class_entry*ce, zend_class_entry*parent, zend_class_entry**traits_and_interfaces);
ZEND_APIexternzend_class_entry* (*zend_inheritance_cache_add)(zend_class_entry*ce, zend_class_entry*proto, zend_class_entry*parent, zend_class_entry**traits_and_interfaces, HashTable*dependencies);
END_EXTERN_C()
#endif