pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:523:
* Special inherit references. * * These are used by find_inherited_identifier(). */ #define INHERIT_SELF 0 /* 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. */
+
/* PROGRAM_* flags. Currently INT16. */
-
+
/* program parts have been realloced into one block */ #define PROGRAM_OPTIMIZED 1 /* program has gone through pass 1 of compiler, prototypes etc. will * not change from now on */ #define PROGRAM_FIXED 2 /* Program is done and can be cloned */ #define PROGRAM_FINISHED 4