summaryrefslogtreecommitdiff
path: root/doc/progs/error.go
Commit message (Collapse)AuthorAgeFilesLines
* cmd/gc: make forward declaration in pure Go package an errorRuss Cox2012-12-221-1/+5
| | | | | | | | | | | | | | | | | | | | An error during the compilation can be more precise than an error at link time. For 'func init', the error happens always: you can't forward declare an init func because the name gets mangled. For other funcs, the error happens only with the special (and never used by hand) -= flag, which tells 6g the package is pure go. The go command now passes -= for pure Go packages. Fixes issue 3705. R=ken2 CC=golang-dev https://codereview.appspot.com/6996054
* doc/progs: use test/run.go for testing on WindowsShenghou Ma2012-09-031-0/+2
| | | | | | | | | | cgo[1-4].go, go1.go couldn't be tested now (cgo[1-4].go can only be tested when cgo is enabled, go1.go contain a list of filenames in the current directory) R=golang-dev, alex.brainman, rsc CC=golang-dev http://codereview.appspot.com/6218048
* doc/progs: update for go 1Rob Pike2012-03-051-1/+4
| | | | | | | | Fixes issue 3076. R=golang-dev, dsymonds, r CC=golang-dev http://codereview.appspot.com/5727056
* doc: only trim newlines in tmpltohtml, gofmt progsAndrew Gerrand2012-01-091-0/+5
| | | | | | R=golang-dev, r, r CC=golang-dev http://codereview.appspot.com/5530048
* doc: add Error Handling articleAndrew Gerrand2011-12-131-0/+115
Originally published on The Go Programming Language Blog, July 12, 2011. http://blog.golang.org/2011/07/error-handling-and-go.html Update issue 2547 R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5475060