- 06 Oct, 2008 2 commits
-
-
Russ Cox authored
R=ken OCL=16550 CL=16550
-
Ian Lance Taylor authored
type definition. R=r DELTA=3 (0 added, 2 deleted, 1 changed) OCL=16537 CL=16545
-
- 05 Oct, 2008 3 commits
-
-
Rob Pike authored
R=rsc DELTA=87 (37 added, 50 deleted, 0 changed) OCL=16498 CL=16507
-
Russ Cox authored
R=r DELTA=7 (2 added, 2 deleted, 3 changed) OCL=16495 CL=16499
-
Ken Thompson authored
R=r OCL=16497 CL=16497
-
- 04 Oct, 2008 4 commits
-
-
Ken Thompson authored
R=r OCL=16494 CL=16494
-
Russ Cox authored
R=ken DELTA=2 (0 added, 0 deleted, 2 changed) OCL=16489 CL=16489
-
Russ Cox authored
R=ken,r DELTA=86 (72 added, 9 deleted, 5 changed) OCL=16488 CL=16488
-
Russ Cox authored
R=r DELTA=43 (43 added, 0 deleted, 0 changed) OCL=16468 CL=16475
-
- 03 Oct, 2008 7 commits
-
-
Russ Cox authored
R=ken OCL=16449 CL=16466
-
Russ Cox authored
package flag export type flag.Flag struct { name flag.string; usage flag.string; \ value flag.Value; next *flag.Flag } type flag.string string type flag.Value interface { AsBool () (? *flag.BoolValue); \ AsInt () (? *flag.IntValue); AsString () (? *flag.StringValue); \ IsBool () (? flag.bool); IsInt () (? flag.bool); IsString () (? flag.bool); \ Str () (? flag.string); ValidValue (str flag.string) (? flag.bool) } type flag.BoolValue struct { val flag.bool; p *flag.bool } type flag.IntValue struct { val flag.int64; p *flag.int64 } type flag.StringValue struct { val flag.string; p *flag.string } type flag.bool bool func (e *flag.StringValue) AsBool () (? *flag.BoolValue) func (e *flag.StringValue) AsInt () (? *flag.IntValue) ... the \ continuations are for this message, not real. changed delimiter for import from (( )) to $$ $$. replaced mksys.bash with mksys.c changed sys.go to use leading export, fake package name is now SYS not foop don't always require ; on forward func decls R=ken,r DELTA=1827 (446 added, 1083 deleted, 298 changed) OCL=16433 CL=16463
-
Ken Thompson authored
R=r OCL=16462 CL=16462
-
Rob Pike authored
R=rsc DELTA=32 (30 added, 0 deleted, 2 changed) OCL=16440 CL=16445
-
Robert Griesemer authored
- clarified naming of invisible fields - fixed syntax of expression statements R=r DELTA=70 (33 added, 4 deleted, 33 changed) OCL=16424 CL=16439
-
Rob Pike authored
Evaluation is done before communication starts. R=gri DELTA=19 (4 added, 1 deleted, 14 changed) OCL=16357 CL=16416
-
Ken Thompson authored
this CL passes the tests, but should be considered unstable R=r OCL=16390 CL=16390
-
- 02 Oct, 2008 7 commits
-
-
Ken Thompson authored
bug fix in named-return R=r OCL=16377 CL=16377
-
Ken Thompson authored
prints that insert spaces and new line R=r OCL=16370 CL=16370
-
Russ Cox authored
delete unused variables R=ken OCL=16360 CL=16360
-
Rob Pike authored
R=gri DELTA=18 (8 added, 2 deleted, 8 changed) OCL=16356 CL=16356
-
Ken Thompson authored
R=r OCL=16345 CL=16345
-
Robert Griesemer authored
- typename cannot refer to interface types - clarified syntax - added TODO re: type name issue with qualified identifiers Changed/fixed order of operators/keywords. R=r DELTA=10 (3 added, 0 deleted, 7 changed) OCL=16337 CL=16339
-
Ian Lance Taylor authored
invalid. The receiver type is not permitted to be a pointer type. Since 6g currently accepts it, this moves the test case back to the bugs directory. R=gri DELTA=22 (11 added, 11 deleted, 0 changed) OCL=16284 CL=16336
-
- 01 Oct, 2008 5 commits
-
-
Robert Griesemer authored
- fixed parsing of parameter lists (sigh) R=r DELTA=48 (22 added, 7 deleted, 19 changed) OCL=16319 CL=16321
-
Ken Thompson authored
var a,b int; R=r OCL=16318 CL=16318
-
Russ Cox authored
R=r DELTA=41 (41 added, 0 deleted, 0 changed) OCL=16290 CL=16293
-
Robert Griesemer authored
R=r OCL=16274 CL=16274
-
Robert Griesemer authored
- some scanner cleanup - new pretty-printed code can be compiled again (for some files) R=r OCL=16272 CL=16272
-
- 30 Sep, 2008 12 commits
-
-
Russ Cox authored
R=r OCL=16250 CL=16250
-
Russ Cox authored
so that they don't look like functions. R=ken OCL=16244 CL=16244
-
Russ Cox authored
R=ken OCL=16240 CL=16242
-
Russ Cox authored
R=r DELTA=41 (41 added, 0 deleted, 0 changed) OCL=16212 CL=16223
-
Russ Cox authored
and still have a variable named "net" R=r DELTA=18 (0 added, 0 deleted, 18 changed) OCL=16220 CL=16222
-
Russ Cox authored
a few missing FLUSH. R=ken OCL=16221 CL=16221
-
Russ Cox authored
R=ken OCL=16219 CL=16219
-
Russ Cox authored
R=ken OCL=16218 CL=16218
-
Rob Pike authored
R=rsc OCL=16213 CL=16213
-
Robert Griesemer authored
- "nil" for interfaces, comparison against "nil" R=r DELTA=38 (24 added, 5 deleted, 9 changed) OCL=16207 CL=16211
-
Russ Cox authored
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
-
Rob Pike authored
update golden add the "goroutines" test R=iant DELTA=74 (36 added, 23 deleted, 15 changed) OCL=16194 CL=16206
-