pike.git/
src/
las.c
Branch:
Tag:
Non-build tags
All tags
No tags
2019-03-12
2019-03-12 11:34:44 by Henrik Grubbström (Grubba) <grubba@grubba.org>
8cf68791c030c5aca3b36150823ba21b3aff9905 (
4
lines) (+
3
/-
1
)
[
Show
|
Annotate
]
Branch:
master
Compiler: Fixed bug in handling of F_TYPE nodes.
Fixes [Github
#25
].
4119:
break; case F_TYPEOF:
+
type_stack_mark();
if (CAR(n)) { push_finished_type(CAR(n)->type); } else {
4126:
} push_type(T_TYPE); if (n->type) free_type(n->type);
-
n->type = pop_type();
+
n->type = pop_
unfinished_
type();
break; case F_UNDEFINED: