pike.git/
src/
language.yacc
Branch:
Tag:
Non-build tags
All tags
No tags
2017-11-27
2017-11-27 13:55:35 by Henrik Grubbström (Grubba) <grubba@grubba.org>
8e3871e718023069889bcd95553fd68c045f55f7 (
7
lines) (+
7
/-
0
)
[
Show
|
Annotate
]
Branch:
master
Compiler: Allow object("string") types again.
Fixes testsuite failure.
1489:
opt_program_type: /* Empty */ { push_object_type(0, 0); } | '(' full_type ')'
+
| '(' string_constant ')'
+
{
+
resolv_type($2);
+
push_type_name($2->u.sval->u.string);
+
free_node($2);
+
}
| '(' error ')' { push_object_type(0, 0);