diff options
author | Robert Griesemer <gri@golang.org> | 2009-11-09 21:13:17 -0800 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-11-09 21:13:17 -0800 |
commit | 073e240233589933c43143c997247c33206bb066 (patch) | |
tree | e6953aa6ac9f97ad730c7509a39cf15d82131fab /src/pkg/go/scanner/scanner_test.go | |
parent | ef50a171462c00444b6bf8d205ae8e97079ab2b9 (diff) | |
download | golang-073e240233589933c43143c997247c33206bb066.tar.gz |
- replaced gofmt expression formatting algorithm with
rsc's algorithm
- applied gofmt -w misc src
- partial CL (remaining files in other CLs)
R=rsc, r
http://go/go-review/1026036
Diffstat (limited to 'src/pkg/go/scanner/scanner_test.go')
-rw-r--r-- | src/pkg/go/scanner/scanner_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/go/scanner/scanner_test.go b/src/pkg/go/scanner/scanner_test.go index 3bdd71e64..be1b44ec7 100644 --- a/src/pkg/go/scanner/scanner_test.go +++ b/src/pkg/go/scanner/scanner_test.go @@ -233,7 +233,7 @@ func TestScan(t *testing.T) { if tokenclass(tok) != e.class { t.Errorf("bad class for %s: got %d, expected %d", lit, tokenclass(tok), e.class) } - epos.Offset += len(lit)+len(whitespace); + epos.Offset += len(lit) + len(whitespace); epos.Line += NewlineCount(lit) + whitespace_linecount; if tok == token.COMMENT && litb[1] == '/' { // correct for unaccounted '/n' in //-style comment |