pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:340:
* that the type is compatible when * overloading. */ #define ID_LOCAL 0x20 /* Locally referenced symbol (not virtual) */ #define ID_INLINE 0x20 /* Same as local */ #define ID_HIDDEN 0x40 /* Symbols that are private and inherited one step later */ #define ID_INHERITED 0x80 /* Symbol is inherited */ #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_WEAK 0x800 /* Variable has weak references. */
+
#define ID_GENERATOR 0x1000 /* Function is a generator. */
-
#define ID_MODIFIER_MASK
0x0fff
+
#define ID_MODIFIER_MASK
0x1fff
#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 */ #define ID_DYNAMIC_DOT 0x100000 /* #pragma dynamic_dot */ /*