summaryrefslogtreecommitdiff
path: root/test/named.go
Commit message (Collapse)AuthorAgeFilesLines
* gc: return of ideal boolRuss Cox2012-02-211-1/+3
| | | | | | | | | | | This is a manual undo of CL 5674098. It does not implement the even less strict spec that we just agreed on, but it gets us back where we were at the last weekly. R=ken2 CC=golang-dev http://codereview.appspot.com/5683069
* gc: drop ideal boolRuss Cox2012-02-181-3/+1
| | | | | | R=golang-dev, ken2 CC=golang-dev http://codereview.appspot.com/5674098
* test: use testlib (final 61)Russ Cox2012-02-161-1/+1
| | | | | | | | | | | X ,s;^// \$G (\$D/)?\$F\.go *$;// compile;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A *$;// build;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A && \./\$A\.out *$;// run;g X ,s;^// errchk \$G( -e)? (\$D/)?\$F\.go *$;// errorcheck;g R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5671080
* delete float, complex - code changesRuss Cox2011-01-191-1/+1
| | | | | | | | | | | also: cmplx -> complex float64(1.0) -> 1.0 float64(1) -> 1.0 R=gri, r, gri1, r2 CC=golang-dev http://codereview.appspot.com/3991043
* gc: new typechecking rulesRuss Cox2010-06-081-237/+237
| | | | | | | | | | | | | | | | | * 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
* test: comparisons have type boolRuss Cox2009-09-241-24/+0
| | | | | | | R=r DELTA=81 (57 added, 24 deleted, 0 changed) OCL=34991 CL=34996
* test of named operationsRuss Cox2009-09-211-0/+305
R=r DELTA=305 (305 added, 0 deleted, 0 changed) OCL=34848 CL=34875