We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4892311 commit 5edab39Copy full SHA for 5edab39
src/cmd/gofmt/gofmt.go
@@ -51,12 +51,12 @@ const (
51
//
52
// This value is defined in go/printer specifically for go/format and cmd/gofmt.
53
printerNormalizeNumbers = 1 << 30
54
-
55
- // parseTypeParams tells go/parser to parse type parameters. Must be kept in
56
- // sync with go/parser/interface.go.
57
- parseTypeParams parser.Mode = 1 << 30
58
)
59
+// parseTypeParams tells go/parser to parse type parameters. Must be kept in
+// sync with go/parser/interface.go.
+const parseTypeParams parser.Mode = 1 << 30
+
60
var (
61
fileSet = token.NewFileSet() // per process FileSet
62
exitCode = 0
0 commit comments