pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2019-02-23
2019-02-23 12:22:08 by Henrik Grubbström (Grubba) <grubba@grubba.org>
8d2ac350835cd5dd1c61d879948c0c39e255d5c6 (
10
lines) (+
7
/-
3
)
[
Show
|
Annotate
]
Branch:
master
Runtime: fill_in_file_and_line() can now also return local variables.
34:
#include "whitespace.h" #include "sprintf.h" #include "pike_search.h"
+
#include "pike_compiler.h"
#include <errno.h> #include <math.h>
2621:
RETURN (t == literal_array_string); }
-
static void fill_in_file_and_line(struct backtrace_frame_struct *this)
+
static void fill_in_file_and_line(struct backtrace_frame_struct *this
,
+
struct local_variable_info *vars
)
{ struct pike_string *file = NULL; assert (this->lineno == 0);
-
+
if (vars) vars->num_local = 0;
if (this->pc && this->prog) {
-
file = low_get_line(this->pc, this->prog, &this->lineno,
NULL
);
+
file = low_get_line(this->pc, this->prog, &this->lineno,
vars
);
this->pc = NULL; } else if (TYPEOF(this->_fun) == PIKE_T_FUNCTION) {
2662:
flags ID_PROTECTED; { if (THIS->lineno) return;
-
fill_in_file_and_line(THIS);
+
fill_in_file_and_line(THIS
, NULL
);
} PIKEFUN string `filename()