Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-05-02 | Imported Upstream version 1.4.2upstream/1.4.2upstream-sid | Tianon Gravi | 6 | -0/+140 | |
2015-01-15 | Imported Upstream version 1.4.1upstream/1.4.1 | Tianon Gravi | 1 | -0/+37 | |
2015-01-15 | Imported Upstream version 1.4upstream/1.4 | Tianon Gravi | 95 | -220/+3625 | |
2014-08-13 | Imported Upstream version 1.3.1upstream/1.3.1 | Michael Stapelberg | 1 | -0/+31 | |
2014-06-19 | Imported Upstream version 1.3upstream/1.3 | Michael Stapelberg | 153 | -304/+4450 | |
2013-12-03 | Imported Upstream version 1.2upstream/1.2 | Michael Stapelberg | 99 | -367/+3101 | |
2013-08-13 | Imported Upstream version 1.1.2upstream/1.1.2 | Michael Stapelberg | 9 | -1/+199 | |
2013-06-14 | Imported Upstream version 1.1.1upstream/1.1.1 | Ingo Oeser | 11 | -0/+235 | |
2013-05-14 | Imported Upstream version 1.1upstream/1.1 | Michael Stapelberg | 62 | -1900/+6980 | |
2013-03-04 | Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304 | Michael Stapelberg | 342 | -905/+7946 | |
2012-06-14 | Imported Upstream version 1.0.2upstream/1.0.2 | Ondřej Surý | 8 | -15/+291 | |
2012-05-02 | Imported Upstream version 1.0.1upstream/1.0.1 | Ondřej Surý | 1 | -2/+135 | |
2012-04-06 | Imported Upstream version 1upstream/1 | Ondřej Surý | 772 | -3227/+11168 | |
2011-11-28 | Imported Upstream version 60.3upstream/60.3 | Ondřej Surý | 1 | -20/+20 | |
2011-09-19 | Imported Upstream version 60.1upstream/60.1 | Ondřej Surý | 24 | -1/+199 | |
2011-09-13 | Imported Upstream version 60upstream/60 | Ondřej Surý | 681 | -0/+62783 | |
2011-09-13 | Imported Upstream version 60 | Ondřej Surý | 660 | -62017/+0 | |
2011-08-03 | Imported Upstream version 59upstream/59 | Ondřej Surý | 16 | -20/+674 | |
2011-06-30 | Imported Upstream version 58upstream/58 | Ondřej Surý | 16 | -13/+245 | |
2011-06-16 | Imported Upstream version 57.2upstream/57.2 | Ondřej Surý | 1 | -0/+22 | |
2011-04-28 | Imported Upstream version 2011.04.27upstream/2011.04.27 | Ondřej Surý | 24 | -15/+516 | |
2011-04-26 | Imported Upstream version 2011.04.13upstream/2011.04.13 | Ondřej Surý | 47 | -209/+659 | |
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 19 | -153/+247 | |
2011-02-18 | Imported Upstream version 2011.02.15upstream/2011.02.15 | Ondřej Surý | 9 | -4/+173 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 80 | -3161/+4067 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 199 | -3701/+6867 | |
2010-06-30 | test: override gcc bug when preparing complex divide tables | Russ Cox | 2 | -8/+30 | |
R=iant CC=golang-dev http://codereview.appspot.com/1666048 | |||||
2010-06-30 | 8g: out of register bug fix | Russ Cox | 2 | -0/+29 | |
Fixes issue 868. R=ken2 CC=golang-dev http://codereview.appspot.com/1695049 | |||||
2010-06-23 | gc: fix crash for nested complex division | Russ Cox | 1 | -0/+6 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1720043 | |||||
2010-06-21 | test: another listen on ":0" -> "127.0.0.1:0" | Russ Cox | 1 | -1/+1 | |
R=r CC=golang-dev http://codereview.appspot.com/1664043 | |||||
2010-06-21 | reflect: add Type.Bits method, add tags to prohibit conversions | Russ Cox | 1 | -3/+0 | |
gob: substitute slice for map R=r CC=golang-dev http://codereview.appspot.com/1699045 | |||||
2010-06-20 | undo changes accidentally included in 09c5add99d50 | Russ Cox | 1 | -0/+2 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1736042 | |||||
2010-06-20 | errchk: fix build - allow matches in multiline error messages | Russ Cox | 1 | -1/+6 | |
TBR=r CC=golang-dev http://codereview.appspot.com/1734042 | |||||
2010-06-20 | gc: better error messages for interface failures, conversions | Russ Cox | 1 | -2/+0 | |
x.go:13: cannot use t (type T) as type Reader in assignment: T does not implement Reader (Read method requires pointer receiver) x.go:19: cannot use q (type Q) as type Reader in assignment: Q does not implement Reader (missing Read method) have read() want Read() x.go:22: cannot use z (type int) as type Reader in assignment: int does not implement Reader (missing Read method) x.go:24: too many arguments to conversion to complex: complex(1, 3) R=ken2 CC=golang-dev http://codereview.appspot.com/1736041 | |||||
2010-06-18 | test: add missing import for zerodivide | Christopher Wedgwood | 1 | -0/+1 | |
R=rsc CC=golang-dev, r http://codereview.appspot.com/1706043 Committer: Russ Cox <rsc@golang.org> | |||||
2010-06-18 | complex divide: match C99 implementation | Russ Cox | 6 | -18/+2522 | |
R=iant, ken2, r, r2, ken3 CC=golang-dev http://codereview.appspot.com/1686044 | |||||
2010-06-14 | runtime: correct fault for 16-bit divide on Leopard | Russ Cox | 2 | -12/+4 | |
R=r CC=golang-dev http://codereview.appspot.com/1703041 | |||||
2010-06-14 | fmt.Print*: reimplement to switch on type first. | Rob Pike | 1 | -1/+1 | |
This shortens, simplifies and regularizes the code significantly. (Improvements to reflect could make another step.) Passes all.bash. One semantic change occurs: The String() method changes behavior. It used to run only for string formats such as %s and %q. Instead, it now runs whenever the item has the method and the result is then processed by the format as a string. Besides the regularization, this has three effects: 1) width is honored for String() items 2) %x works for String() items 3) implementations of String that merely recur will recur forever Regarding point 3, example from the updated documentation: type X int func (x X) String() string { return Sprintf("%d", x) } should cast the value before recurring: func (x X) String() string { return Sprintf("%d", int(x)) } R=rsc CC=golang-dev http://codereview.appspot.com/1613045 | |||||
2010-06-14 | Add test for division by zero. | Rob Pike | 2 | -0/+180 | |
It fails with 6g. Once 6g is fixed up I will extend the value tests. R=rsc, iant CC=golang-dev http://codereview.appspot.com/1677043 | |||||
2010-06-14 | remove uses of ... from tree, add one test | Russ Cox | 4 | -21/+7 | |
R=r CC=golang-dev http://codereview.appspot.com/1662041 | |||||
2010-06-12 | gc: less aggressive name binding, for better line numbers in errors | Russ Cox | 1 | -0/+44 | |
Cleans up a few other corner cases too. R=ken2 CC=golang-dev http://codereview.appspot.com/1592045 | |||||
2010-06-10 | test: check that surrogate pair runes and huge rune values are rejected | Russ Cox | 1 | -0/+25 | |
R=r CC=golang-dev http://codereview.appspot.com/1615042 | |||||
2010-06-09 | bug286: test case | Robert Griesemer | 2 | -0/+101 | |
R=r CC=golang-dev http://codereview.appspot.com/1644042 | |||||
2010-06-09 | gc: more cleanup | Russ Cox | 1 | -1/+20 | |
* disallow surrogate pair runes. * diagnose impossible type assertions * eliminate another static buffer. * do not overflow lexbuf. * add -u flag to disable package unsafe. R=ken2 CC=golang-dev http://codereview.appspot.com/1619042 | |||||
2010-06-08 | fix build: invalid character literals | Russ Cox | 1 | -6/+6 | |
R=r CC=golang-dev http://codereview.appspot.com/1631041 | |||||
2010-06-08 | gc: new typechecking rules | Russ Cox | 12 | -392/+712 | |
* 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-06-08 | misc cleanup: gofmt + &x -> x[0:] conversion | Russ Cox | 3 | -115/+116 | |
R=gri CC=golang-dev http://codereview.appspot.com/1620042 | |||||
2010-06-08 | fix build | Russ Cox | 2 | -21/+22 | |
R=gri CC=golang-dev http://codereview.appspot.com/1616041 | |||||
2010-06-08 | bug284: make conversion legal, fix error patterns | Russ Cox | 1 | -6/+10 | |
R=gri CC=golang-dev http://codereview.appspot.com/1612041 | |||||
2010-06-08 | bug285: delete invalid map assignment | Russ Cox | 1 | -3/+1 | |
*T2 implements I2, but T2 does not. R=gri CC=golang-dev http://codereview.appspot.com/1613041 |