pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:110:
#define IDENTIFIER_IS_VARIABLE(X) (!((X) & (IDENTIFIER_FUNCTION | IDENTIFIER_CONSTANT))) struct identifier { struct pike_string *name; struct pike_string *type; unsigned INT16 identifier_flags; /* IDENTIFIER_??? */ unsigned INT16 run_time_type; #ifdef PROFILING unsigned INT32 num_calls;
+
unsigned INT32 total_time;
#endif /* PROFILING */ union idptr func; }; /* * in the bytecode, a function starts with: * char num_args * char num_locals * char code[] */