mirror of https://github.com/golang/go.git
parent
40fa690d75
commit
21617250f4
|
|
@ -73,7 +73,7 @@
|
|||
%type <type> indcl fnlitdcl
|
||||
|
||||
%type <val> hidden_constant
|
||||
%type <node> hidden_dcl
|
||||
%type <node> hidden_dcl hidden_structdcl
|
||||
%type <type> hidden_type hidden_type1 hidden_type2
|
||||
%type <node> hidden_structdcl_list ohidden_structdcl_list hidden_structdcl_list_r
|
||||
%type <node> hidden_interfacedcl_list ohidden_interfacedcl_list hidden_interfacedcl_list_r
|
||||
|
|
@ -1580,8 +1580,8 @@ hidden_funarg_list:
|
|||
}
|
||||
|
||||
hidden_structdcl_list_r:
|
||||
hidden_dcl
|
||||
| hidden_structdcl_list_r ';' hidden_dcl
|
||||
hidden_structdcl
|
||||
| hidden_structdcl_list_r ';' hidden_structdcl
|
||||
{
|
||||
$$ = nod(OLIST, $1, $3);
|
||||
}
|
||||
|
|
@ -1847,6 +1847,17 @@ hidden_dcl:
|
|||
$$->type = $2;
|
||||
}
|
||||
|
||||
hidden_structdcl:
|
||||
sym1 hidden_type
|
||||
{
|
||||
$$ = nod(ODCLFIELD, newname($1), N);
|
||||
$$->type = $2;
|
||||
}
|
||||
| '?' hidden_type
|
||||
{
|
||||
$$ = embedded($2->sym);
|
||||
}
|
||||
|
||||
hidden_interfacedcl:
|
||||
sym1 '(' ohidden_funarg_list ')' ohidden_funres
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1061,7 +1061,7 @@ Tpretty(Fmt *fp, Type *t)
|
|||
return fmtprint(fp, " }");
|
||||
|
||||
case TFIELD:
|
||||
if(t->sym == S || t->sym->name[0] == '_') {
|
||||
if(t->sym == S || t->sym->name[0] == '_' || t->embedded) {
|
||||
if(exporting)
|
||||
fmtprint(fp, "? ");
|
||||
return fmtprint(fp, "%T", t->type);
|
||||
|
|
|
|||
Loading…
Reference in New Issue