1
0
mirror of https://github.com/golang/go synced 2024-10-04 05:31:21 -06:00
go/src/cmd/gc
Russ Cox 4d571c9093 fix up arg list parsing to handle any names:
type t1 int;
type t2 int;
type t3 int;
func f1(t1, t2, t3);
func f2(t1, t2, t3 bool);
func f3(t1, t2, x t3);
func f4(*t2, x t3);	// error: cannot mix
func f5(t1, *t3);
func (x *t1) f6(y *[]t2) (t1, *t3);
func f7() (int, *string);
func f8(t1, *t2, x t3);	// error: cannot mix
func f9() (x int, *string);
func f10(*t2, t3);

R=ken
OCL=16202
CL=16210
2008-09-30 12:53:11 -07:00
..
const.c bugs 29, 61, 62, 74 2008-09-04 17:15:15 -07:00
dcl.c fix up arg list parsing to handle any names: 2008-09-30 12:53:11 -07:00
export.c minor bugs 2008-09-29 20:33:51 -07:00
go.h fix up arg list parsing to handle any names: 2008-09-30 12:53:11 -07:00
go.y fix up arg list parsing to handle any names: 2008-09-30 12:53:11 -07:00
lex.c new grammar: 2008-09-16 19:14:33 -07:00
Makefile better yacc rule in Makefile 2008-09-22 10:56:54 -07:00
mksys.bash select 2008-07-24 15:57:30 -07:00
mparith1.c fixed bugs in const/case 2008-08-12 14:04:03 -07:00
mparith2.c shift operations to new spec 2008-08-28 19:59:42 -07:00
mparith3.c adding and deleting files 2008-08-09 17:33:35 -07:00
subr.c fix up arg list parsing to handle any names: 2008-09-30 12:53:11 -07:00
sys.go cleanup; sys.sleep can go. 2008-09-24 15:28:03 -07:00
sysimport.c cleanup; sys.sleep can go. 2008-09-24 15:28:03 -07:00
walk.c minor bugs 2008-09-29 20:33:51 -07:00