pike.git/
src/
language.yacc
Branch:
Tag:
Non-build tags
All tags
No tags
2001-12-06
2001-12-06 10:01:17 by Henrik Grubbström (Grubba) <grubba@grubba.org>
9ed8de9052095290d7064c84b6e3dcebd8914671 (
13
lines) (+
8
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
Improved fix of lexical_islocal() [bug
2571 (#2571)
].
Rev: src/language.yacc:1.265
112:
/* This is the grammar definition of Pike. */ #include "global.h"
-
RCSID("$Id: language.yacc,v 1.
264
2001/
11
/
29
17
:
02
:
34
grubba Exp $");
+
RCSID("$Id: language.yacc,v 1.
265
2001/
12
/
06
10
:
01
:
17
grubba Exp $");
#ifdef HAVE_MEMORY_H #include <memory.h> #endif
3848:
if(f->variable[e].name==str) { struct compiler_frame *q=Pike_compiler->compiler_frame;
-
if(f == q && f->variable[e].def) {
-
/*fprintf(stderr, "Found prior definition of \"%s\"\n", str->str); */
-
return copy_node(f->variable[e].def);
-
}
+
while(q!=f) {
3864:
if(q->min_number_of_locals < e+1) q->min_number_of_locals = e+1;
+
+
if(f->variable[e].def) {
+
/*fprintf(stderr, "Found prior definition of \"%s\"\n", str->str); */
+
return copy_node(f->variable[e].def);
+
}
+
return mklocalnode(e,depth); } }