Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(82)

Delta Between Two Patch Sets: src/pkg/go/printer/printer.go

Issue 4442064: code review 4442064: src/pkg: make package doc comments consistently start w... (Closed)
Left Patch Set: Created 13 years, 11 months ago
Right Patch Set: diff -r 1c953954868a https://go.googlecode.com/hg/ Created 13 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/go/parser/parser.go ('k') | src/pkg/go/scanner/scanner.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // The printer package implements printing of AST nodes. 5 // Package printer implements printing of AST nodes.
6 package printer 6 package printer
7 7
8 import ( 8 import (
9 "bytes" 9 "bytes"
10 "fmt" 10 "fmt"
11 "go/ast" 11 "go/ast"
12 "go/token" 12 "go/token"
13 "io" 13 "io"
14 "os" 14 "os"
15 "path/filepath" 15 "path/filepath"
(...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after
1048 } 1048 }
1049 1049
1050 1050
1051 // Fprint "pretty-prints" an AST node to output. 1051 // Fprint "pretty-prints" an AST node to output.
1052 // It calls Config.Fprint with default settings. 1052 // It calls Config.Fprint with default settings.
1053 // 1053 //
1054 func Fprint(output io.Writer, fset *token.FileSet, node interface{}) os.Error { 1054 func Fprint(output io.Writer, fset *token.FileSet, node interface{}) os.Error {
1055 _, err := (&Config{Tabwidth: 8}).Fprint(output, fset, node) // don't car e about number of bytes written 1055 _, err := (&Config{Tabwidth: 8}).Fprint(output, fset, node) // don't car e about number of bytes written
1056 return err 1056 return err
1057 } 1057 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b