pike.git/
src/
las.c
Branch:
Tag:
Non-build tags
All tags
No tags
2018-05-25
2018-05-25 12:31:07 by Henrik Grubbström (Grubba) <grubba@grubba.org>
4019aa39b0bce120b93b149f4e61840b77421523 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
master
Compiler: Support F_LOCAL nodes properly in fix_type_field().
3418:
These two are needed if we want to extract types from nodes while building the tree. */
-
if(
CAR
(n) ) fix_type_field(CAR(n));
-
if(
CDR
(n) ) fix_type_field(CDR(n));
+
if(
car_is_node
(n) ) fix_type_field(CAR(n));
+
if(
cdr_is_node
(n) ) fix_type_field(CDR(n));
switch(n->token) {