pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ /*
-
* $Id: program.h,v 1.
143
2001/
08
/
16
04
:
38
:
53
mast
Exp $
+
* $Id: program.h,v 1.
144
2001/
09
/
10
20
:
47
:
35
hubbe
Exp $
*/ #ifndef PROGRAM_H #define PROGRAM_H #include <stdarg.h> #include "global.h" #include "pike_types.h" #include "pike_macros.h" #include "svalue.h" #include "time_stuff.h"
pike.git/src/program.h:491:
int store_constant(struct svalue *foo, int equal, struct pike_string *constant_name); struct array *program_indices(struct program *p); struct array *program_values(struct program *p); void program_index_no_free(struct svalue *to, struct program *p, struct svalue *ind); int get_small_number(char **q); void start_line_numbering(void); void store_linenumber(INT32 current_line, struct pike_string *current_file);
+
char *debug_get_program_line(struct program *prog,
+
INT32 *linep);
PMOD_EXPORT struct pike_string *get_program_line(struct program *prog, INT32 *linep); PMOD_EXPORT struct pike_string *get_line(PIKE_OPCODE_T *pc, struct program *prog, INT32 *linep); void my_yyerror(char *fmt,...) ATTRIBUTE((format(printf,1,2))); void yy_describe_exception(struct svalue *thrown); struct program *compile(struct pike_string *prog, struct object *handler, int major,