No description
Find a file
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
doc - type of array literals is always fixed array 2008-09-30 10:57:59 -07:00
include acid fixes etc. still not perfect. 2008-09-16 12:33:00 -07:00
lib help management of empty pkg and lib directories in perforce 2008-07-21 17:10:49 -07:00
pkg help management of empty pkg and lib directories in perforce 2008-07-21 17:10:49 -07:00
src fix up arg list parsing to handle any names: 2008-09-30 12:53:11 -07:00
test 104, 107, 108: they are known to fail, so mark them appropriately. 2008-09-30 12:31:47 -07:00
usr/gri - allow for embeded types in fields, and parameter lists w/o parameter names 2008-09-27 17:42:18 -07:00