pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:501:
* this can be a string on the form "A::B::C". */ struct pike_string *name; }; /** * Special inherit references. * * These are used by find_inherited_identifier(). */ #define INHERIT_SELF 0 /* Self. */
-
#define INHERIT_
GLOBAL
-1 /* Self and overrideable. */
-
#define INHERIT_ALL -
2
/* All inherits but not self. */
+
#define INHERIT_
LOCAL
-1 /* Self and
not
overrideable
(force local)
. */
+
#define INHERIT_
GLOBAL -2 /* Self and overrideable. */
+
#define INHERIT_
ALL -
3
/* All inherits but not self. */
/* * Storage struct for a trampoline object * (not a part of the program type) */ struct pike_trampoline { struct pike_frame *frame; INT32 func; };