pike.git
/
src
/
builtin.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/builtin.cmod:1:
/* -*- c -*- || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: builtin.cmod,v 1.
108
2003/01/
15
21
:
41
:
28
mast
Exp $
+
|| $Id: builtin.cmod,v 1.
109
2003/01/
26
11
:
09
:
00
mirar
Exp $
*/ #include "global.h" #include "interpret.h" #include "svalue.h" #include "opcodes.h" #include "pike_macros.h" #include "object.h" #include "program.h" #include "array.h"
pike.git/src/builtin.cmod:1068:
/*! @class BacktraceFrame */ PIKECLASS backtrace_frame { PIKEVAR mixed fun; PIKEVAR array args; CVAR struct program *prog; /* FIXME: Ought to be a private pikevar... */ CVAR PIKE_OPCODE_T *pc; CVAR struct pike_string *filename;
-
CVAR
INT_TYPE
lineno;
+
CVAR
INT32
lineno;
INIT { THIS->fun.type = T_INT; THIS->fun.u.integer = 0; THIS->prog = NULL; THIS->pc = NULL; THIS->lineno = 0; THIS->args = NULL; THIS->filename = NULL;