Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
b4af09ab
Commit
b4af09ab
authored
Feb 16, 2009
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
embedded interface types in interfaces.
R=ken OCL=25072 CL=25072
parent
78906c38
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
6 deletions
+44
-6
src/cmd/gc/dcl.c
src/cmd/gc/dcl.c
+33
-3
src/cmd/gc/go.y
src/cmd/gc/go.y
+11
-3
No files found.
src/cmd/gc/dcl.c
View file @
b4af09ab
...
...
@@ -643,7 +643,7 @@ funclit1(Type *type, Node *body)
Type
**
stotype
(
Node
*
n
,
int
et
,
Type
**
t
)
{
Type
*
f
;
Type
*
f
,
*
t1
;
Iter
save
;
String
*
note
;
int
lno
;
...
...
@@ -666,20 +666,50 @@ loop:
goto
next
;
}
if
(
n
->
op
!=
ODCLFIELD
||
n
->
type
==
T
)
if
(
n
->
op
!=
ODCLFIELD
)
fatal
(
"stotype: oops %N
\n
"
,
n
);
if
(
n
->
type
==
T
)
{
// assume error already printed
goto
next
;
}
switch
(
n
->
val
.
ctype
)
{
case
CTSTR
:
if
(
et
!=
TSTRUCT
)
yyerror
(
"interface method cannot have annotation"
);
note
=
n
->
val
.
u
.
sval
;
break
;
default:
yyerror
(
"field annotation must be string"
);
if
(
et
!=
TSTRUCT
)
yyerror
(
"interface method cannot have annotation"
);
else
yyerror
(
"field annotation must be string"
);
case
CTxxx
:
note
=
nil
;
break
;
}
if
(
et
==
TINTER
&&
n
->
left
==
N
)
{
// embedded interface - inline the methods
if
(
n
->
type
->
etype
!=
TINTER
)
{
yyerror
(
"interface contains embedded non-interface %T"
,
t
);
goto
next
;
}
for
(
t1
=
n
->
type
->
type
;
t1
!=
T
;
t1
=
t1
->
down
)
{
if
(
strcmp
(
t1
->
sym
->
package
,
package
)
!=
0
)
yyerror
(
"embedded interface contains unexported method %S"
,
t1
->
sym
);
f
=
typ
(
TFIELD
);
f
->
type
=
t1
->
type
;
f
->
width
=
BADWIDTH
;
f
->
nname
=
newname
(
t1
->
sym
);
f
->
sym
=
t1
->
sym
;
*
t
=
f
;
t
=
&
f
->
down
;
}
goto
next
;
}
f
=
typ
(
TFIELD
);
f
->
type
=
n
->
type
;
f
->
note
=
note
;
...
...
src/cmd/gc/go.y
View file @
b4af09ab
...
...
@@ -57,7 +57,7 @@
%
type
<
node
>
exprsym3_list_r
exprsym3
%
type
<
node
>
name
onew_name
new_name
new_name_list_r
new_field
%
type
<
node
>
vardcl_list_r
vardcl
Avardcl
Bvardcl
%
type
<
node
>
interfacedcl_list_r
interfacedcl
%
type
<
node
>
interfacedcl_list_r
interfacedcl
interfacedcl1
%
type
<
node
>
structdcl_list_r
structdcl
embed
%
type
<
node
>
fnres
Afnres
Bfnres
fnliteral
xfndcl
fndcl
fnbody
%
type
<
node
>
braced_keyexpr_list
keyval_list_r
keyval
...
...
@@ -1385,8 +1385,8 @@ embed:
context
=
nil
;
}
interfacedcl
:
new_name
','
interfacedcl
interfacedcl
1
:
new_name
','
interfacedcl
1
{
$$
=
nod
(
ODCLFIELD
,
$
1
,
N
);
$$
=
nod
(
OLIST
,
$$,
$
3
);
...
...
@@ -1397,6 +1397,14 @@ interfacedcl:
$$->
type
=
$
2
;
}
interfacedcl
:
interfacedcl1
|
latype
{
$$
=
nod
(
ODCLFIELD
,
N
,
N
);
$$->
type
=
oldtype
($
1
);
}
indcl
:
'('
oarg_type_list
')'
fnres
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment