pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:109:
LFUN__SEARCH = NUM_LFUNS, LFUN__TYPES, LFUN__SERIALIZE, LFUN__DESERIALIZE, LFUN__SIZE_OBJECT, LFUN__RANDOM, LFUN_POW, LFUN_RPOW, LFUN__SQRT,
+
LFUN__ANNOTATIONS,
}; extern const char *const lfun_names[]; extern struct pike_string *lfun_strings[]; #ifndef STRUCT_NODE_S_DECLARED #define STRUCT_NODE_S_DECLARED struct node_s; typedef struct node_s node;
pike.git/src/program.h:958:
int find_shared_string_identifier(struct pike_string *name, const struct program *prog); PMOD_EXPORT int find_identifier(const char *name,const struct program *prog); int store_prog_string(struct pike_string *str); int store_constant(const struct svalue *foo, int equal, struct pike_string *constant_name); struct array *program_indices(struct program *p); struct array *program_values(struct program *p); struct array *program_types(struct program *p);
+
struct array *program_inherit_annotations(struct program *p);
+
struct array *program_annotations(struct program *p, int flags);
int low_program_index_no_free(struct svalue *to, struct program *p, int e, struct object *parent, int parent_identifier); int program_index_no_free(struct svalue *to, struct svalue *what, struct svalue *ind); INT_TYPE get_small_number(char **q); void ext_store_program_line (struct program *prog, INT_TYPE line, struct pike_string *file); void start_line_numbering(void); void store_linenumber(INT_TYPE current_line, struct pike_string *current_file); PMOD_EXPORT struct pike_string *low_get_program_line(struct program *prog,