Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-09-13 | Read goinstall dashboard option from debian configuration file | Ondřej Surý | 1 | -44/+54 | |
2011-08-24 | Imported Upstream version 2011.08.17 | Ondřej Surý | 1 | -9/+9 | |
2011-08-03 | Imported Upstream version 2011.07.29upstream-weekly/2011.07.29 | Ondřej Surý | 1 | -13/+2 | |
2011-06-28 | Imported Upstream version 2011.06.23upstream-weekly/2011.06.23 | Ondřej Surý | 1 | -1/+10 | |
2011-06-10 | Imported Upstream version 2011.06.09upstream-weekly/2011.06.09 | Ondřej Surý | 1 | -292/+0 | |
2011-06-03 | Imported Upstream version 2011.06.02upstream-weekly/2011.06.02 | Ondřej Surý | 1 | -4/+14 | |
2011-05-23 | Imported Upstream version 2011.05.22upstream-weekly/2011.05.22 | Ondřej Surý | 1 | -51/+95 | |
2011-04-28 | Imported Upstream version 2011.04.27upstream/2011.04.27 | Ondřej Surý | 1 | -18/+65 | |
2011-04-26 | Imported Upstream version 2011.04.13upstream/2011.04.13 | Ondřej Surý | 1 | -12/+3 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 1 | -11/+13 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 1 | -92/+313 | |
2010-06-27 | optimization of static initialization | Ken Thompson | 1 | -3/+3 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1677049 | |||||
2010-06-14 | gc: no more ... | Russ Cox | 1 | -152/+25 | |
various cleanup, deleting unused code R=ken2 CC=golang-dev http://codereview.appspot.com/1663041 | |||||
2010-06-12 | gc: less aggressive name binding, for better line numbers in errors | Russ Cox | 1 | -6/+28 | |
Cleans up a few other corner cases too. R=ken2 CC=golang-dev http://codereview.appspot.com/1592045 | |||||
2010-06-08 | gc: new typechecking rules | Russ Cox | 1 | -305/+81 | |
* Code for assignment, conversions now mirrors spec. * Changed some snprint -> smprint. * Renamed runtime functions to separate interface conversions from type assertions: convT2I, assertI2T, etc. * Correct checking of \U sequences. Fixes issue 840. Fixes issue 830. Fixes issue 778. R=ken2 CC=golang-dev http://codereview.appspot.com/1303042 | |||||
2010-05-20 | gc: handle use of builtin function outside function call | Russ Cox | 1 | -1/+3 | |
tweaks & tests of last bug fix too. R=ken2 CC=golang-dev http://codereview.appspot.com/1207044 | |||||
2010-05-20 | gc: line number bug fix | Russ Cox | 1 | -1/+1 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1243044 | |||||
2010-05-03 | allow data statements for simple | Ken Thompson | 1 | -1/+3 | |
external variable assignements. R=rsc CC=golang-dev http://codereview.appspot.com/1094041 | |||||
2010-05-01 | gc: be pickier about slice, chan, array, and map sizes | Russ Cox | 1 | -5/+9 | |
Fixes issue 589. R=ken2 CC=golang-dev http://codereview.appspot.com/1032044 | |||||
2010-04-30 | gc: bug271 | Russ Cox | 1 | -8/+7 | |
Fixes issue 662. R=ken2 CC=golang-dev http://codereview.appspot.com/978043 | |||||
2010-04-30 | gc: bug270 | Russ Cox | 1 | -4/+1 | |
Fixes issue 746. R=ken2 CC=golang-dev http://codereview.appspot.com/1040042 | |||||
2010-04-12 | gc: zero unnamed return values on entry if func has defer | Russ Cox | 1 | -4/+10 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/891050 | |||||
2010-04-11 | gc: compile s == "" as len(s) == 0 | Russ Cox | 1 | -0/+24 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/840043 | |||||
2010-04-01 | runtime: turn run time errors checks into panics | Russ Cox | 1 | -6/+1 | |
R=ken2, r CC=golang-dev http://codereview.appspot.com/871042 Committer: Russ Cox <rsc@golang.org> | |||||
2010-03-31 | gc: implement panic and recover | Russ Cox | 1 | -1/+2 | |
R=ken2, r, ken3 CC=golang-dev http://codereview.appspot.com/831042 | |||||
2010-03-30 | gc: add panic and recover (still unimplemented in runtime) | Russ Cox | 1 | -2/+8 | |
main semantic change is to enforce single argument to panic. runtime: change to 1-argument panic. use String method on argument if it has one. R=ken2, r CC=golang-dev http://codereview.appspot.com/812043 | |||||
2010-03-29 | gc: bug265 | Russ Cox | 1 | -5/+20 | |
Fixes issue 700. R=ken2 CC=golang-dev http://codereview.appspot.com/839041 | |||||
2010-03-26 | gc: allow taking address of out parameters | Russ Cox | 1 | -1/+25 | |
Fixes issue 186. R=ken2 CC=golang-dev http://codereview.appspot.com/793041 | |||||
2010-03-24 | depricate panicln | Ken Thompson | 1 | -7/+3 | |
R=rsc CC=golang-dev http://codereview.appspot.com/743041 | |||||
2010-03-22 | gc: various map-related bug fixes | Russ Cox | 1 | -50/+45 | |
Fixes issue 687. R=ken2 CC=golang-dev http://codereview.appspot.com/680042 | |||||
2010-03-09 | identical complex implementation | Ken Thompson | 1 | -3/+12 | |
for 6g and 8g. can also be used for 5g. 5g is still a stub. R=rsc CC=golang-dev http://codereview.appspot.com/362041 | |||||
2010-03-08 | 5g/6g/8g: fix double function call in slice | Russ Cox | 1 | -0/+6 | |
Fixes issue 654. R=ken2 CC=golang-dev http://codereview.appspot.com/310041 | |||||
2010-03-05 | 6g complex type usable | Ken Thompson | 1 | -0/+3 | |
8g and 5g have stubs to ignore complex R=rsc CC=golang-dev http://codereview.appspot.com/257042 | |||||
2010-03-05 | gc: fix crash on complicated arg to make slice. | Russ Cox | 1 | -1/+1 | |
Fixes issue 615. R=ken2 CC=golang-dev http://codereview.appspot.com/255043 | |||||
2010-03-05 | gc: better compilation of floating point += | Russ Cox | 1 | -2/+5 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/255042 | |||||
2010-03-03 | gc: fix imported and not used message - show path | Russ Cox | 1 | -1/+0 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/229046 | |||||
2010-02-25 | gc: implement []int(string) and []byte(string) | Russ Cox | 1 | -10/+22 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/224060 | |||||
2010-02-19 | fixed bug in mpconst float multiply by 0. | Ken Thompson | 1 | -1/+1 | |
more complex -- constants, variables and print. R=rsc CC=golang-dev http://codereview.appspot.com/217061 | |||||
2010-02-18 | gc: fix this morning's bug fix | Russ Cox | 1 | -2/+1 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/216043 | |||||
2010-02-18 | complex constant multiply and divide | Ken Thompson | 1 | -4/+8 | |
R=rsc CC=golang-dev http://codereview.appspot.com/217041 | |||||
2010-02-18 | more complex - constants | Ken Thompson | 1 | -0/+6 | |
import and export R=rsc CC=golang-dev http://codereview.appspot.com/214050 | |||||
2010-02-18 | gc: recursive interface embedding | Russ Cox | 1 | -5/+43 | |
Fixes issue 287. R=ken2 CC=golang-dev http://codereview.appspot.com/215048 | |||||
2010-02-16 | gc: undo attempt at fixing recursive interface embedding | Russ Cox | 1 | -18/+1 | |
Fixes issue 582. Update issue 287 Status: Accepted Bug fix was too intrusive; undo and reopen issue. R=ken2 CC=golang-dev http://codereview.appspot.com/209044 | |||||
2010-02-01 | gc: bug250, bug251 - recursive interface types | Russ Cox | 1 | -34/+66 | |
Fixes issue 287. R=ken2 CC=golang-dev http://codereview.appspot.com/199057 | |||||
2010-02-01 | gc: bug246 | Russ Cox | 1 | -1/+1 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/198057 | |||||
2010-02-01 | gc: bug242 | Russ Cox | 1 | -10/+28 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/198053 | |||||
2010-02-01 | gc: final ...T bug for the day | Russ Cox | 1 | -0/+2 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/199046 | |||||
2010-02-01 | gc: add ... T, rework plain ... | Russ Cox | 1 | -3/+32 | |
No longer a distinct type; now a property of func types. R=ken2 CC=golang-dev http://codereview.appspot.com/197042 | |||||
2010-01-27 | gc: implement defer print/println/panic/panicln | Russ Cox | 1 | -43/+129 | |
Fixes issue 219. R=ken2, r CC=golang-dev http://codereview.appspot.com/194097 | |||||
2010-01-19 | gc: const debug bool = false | Russ Cox | 1 | -1/+1 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/186232 |