pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:331:
#define ID_OPTIONAL 0x100 /* Symbol is not required by the interface */ #define ID_EXTERN 0x200 /* Symbol is defined later */ #define ID_VARIANT 0x400 /* Function is overloaded by argument. */ #define ID_MODIFIER_MASK 0x07ff #define ID_STRICT_TYPES 0x8000 /* #pragma strict_types */ #define ID_SAVE_PARENT 0x10000 /* #pragma save_parent */ #define ID_DONT_SAVE_PARENT 0x20000 /* #pragma dont_save_parent */ #define ID_NO_DEPRECATION_WARNINGS 0x40000 /* #pragma no_deprecation_warnings */
+
#define ID_DISASSEMBLE 0x80000 /* #pragma disassemble */
/* * All identifiers in this program * and all identifiers in inherited programs * need to have a 'struct reference' in this * program. When we overload a function, we simply * change the reference to point to the new 'struct identifier'. * * When an identifier is represented as an integer, it's typically the