summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2009-08-06- initial version of pidigits.go benchmarkRobert Griesemer2-6/+93
2009-08-06- allow more general type switch syntaxRobert Griesemer6-36/+150
2009-08-06add runtime.GOMAXPROCS, allowing a program to, in effect, set $GOMAXPROCSRob Pike2-1/+26
2009-08-06- bufio.ReadRune fix for empty reads w/o errorsRobert Griesemer2-5/+59
2009-08-06minor fixRobert Griesemer1-1/+1
2009-08-05- FieldByName lookup through anonymous fieldsRobert Griesemer6-60/+276
2009-08-05support []byte (more efficient) as well as string in the interfaces.Rob Pike7-33/+188
2009-08-05special case: recognize '[^\n]' and make it as fast as '.'Rob Pike2-2/+24
2009-08-05Make os.RemoveAll return no error if path does not exist.Austin Clements1-4/+8
2009-08-05delay range processing. old2new is goneRuss Cox9-363/+286
2009-08-05delay := processingRuss Cox10-329/+218
2009-08-05fix amd64 buildRuss Cox1-4/+4
2009-08-04make Syms smaller.Russ Cox14-418/+210
2009-08-04get function calls out of the way beforeRuss Cox2-15/+51
2009-08-04move various bits of code aroundRuss Cox7-1238/+1232
2009-08-04fix division bugRuss Cox1-2/+27
2009-08-04delayed evaluation of var blocksRuss Cox6-48/+97
2009-08-04fix buildRob Pike1-2/+2
2009-08-04trailing newlinesRuss Cox2-2/+2
2009-08-04move select into its own file.Russ Cox6-237/+184
2009-08-04type checking of assignments, switch, if, forRuss Cox6-643/+411
2009-08-03print profile to stderr. sheesh.Rob Pike1-40/+41
2009-08-03WriteStringRob Pike2-0/+41
2009-08-03this time really clean up a TODORob Pike1-24/+4
2009-08-03don't crash printing a nil mapRob Pike2-1/+19
2009-08-03more 6g reorg; checkpoint.Russ Cox10-1354/+1132
2009-08-03printer.go:Robert Griesemer2-34/+98
2009-07-31fix long-standing bug in doc reader:Robert Griesemer1-7/+22
2009-07-31printer:Robert Griesemer5-94/+165
2009-07-31add test of invariant in findVarRob Pike1-0/+23
2009-07-31delete unused arg to empty.Rob Pike1-3/+6
2009-07-31make %v and %p consistentRob Pike1-1/+1
2009-07-31missed in last checkinRuss Cox1-0/+20
2009-07-31checkpoint; still plenty to clean upRuss Cox11-1039/+490
2009-07-30- don't call String method of AST nodes when converting them to textRobert Griesemer2-10/+14
2009-07-30bug fixRobert Griesemer1-2/+3
2009-07-30delete some code from walkexpr that is nowRuss Cox5-294/+102
2009-07-30dotted namesRob Pike3-7/+26
2009-07-30go/ast/filter.go:Robert Griesemer5-56/+91
2009-07-30String method for token.Position. Extracted from gri's tree.Austin Clements3-13/+27
2009-07-30fix a long-standing typoRob Pike1-2/+2
2009-07-30typechecking checkpoint.Russ Cox15-555/+1327
2009-07-30use full path on command line when compiling,Russ Cox1-0/+4
2009-07-30fix build on amd64Russ Cox4-1/+10
2009-07-29handle unsupported types safely.Rob Pike6-75/+140
2009-07-29parser:Robert Griesemer5-176/+146
2009-07-29break tabwriter columns when starting a new block of indented statementsRobert Griesemer3-1/+16
2009-07-29fix typoRob Pike1-1/+1
2009-07-29clean up EOFRob Pike2-5/+4
2009-07-29handle some error conditions involving bad data.Rob Pike3-8/+31