Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
96a609c2
Commit
96a609c2
authored
Jun 25, 2012
by
Robert Griesemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gofmt: handle comments correctly in rewrites
R=rsc CC=golang-dev
https://golang.org/cl/6294076
parent
51ff2ef4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
2 deletions
+35
-2
src/cmd/gofmt/gofmt_test.go
src/cmd/gofmt/gofmt_test.go
+1
-1
src/cmd/gofmt/rewrite.go
src/cmd/gofmt/rewrite.go
+4
-1
src/cmd/gofmt/testdata/rewrite5.golden
src/cmd/gofmt/testdata/rewrite5.golden
+15
-0
src/cmd/gofmt/testdata/rewrite5.input
src/cmd/gofmt/testdata/rewrite5.input
+15
-0
No files found.
src/cmd/gofmt/gofmt_test.go
View file @
96a609c2
...
@@ -66,7 +66,6 @@ func runTest(t *testing.T, in, out, flags string) {
...
@@ -66,7 +66,6 @@ func runTest(t *testing.T, in, out, flags string) {
}
}
}
}
// TODO(gri) Add more test cases!
var
tests
=
[]
struct
{
var
tests
=
[]
struct
{
in
,
flags
string
in
,
flags
string
}{
}{
...
@@ -78,6 +77,7 @@ var tests = []struct {
...
@@ -78,6 +77,7 @@ var tests = []struct {
{
"testdata/rewrite2.input"
,
"-r=int->bool"
},
{
"testdata/rewrite2.input"
,
"-r=int->bool"
},
{
"testdata/rewrite3.input"
,
"-r=x->x"
},
{
"testdata/rewrite3.input"
,
"-r=x->x"
},
{
"testdata/rewrite4.input"
,
"-r=(x)->x"
},
{
"testdata/rewrite4.input"
,
"-r=(x)->x"
},
{
"testdata/rewrite5.input"
,
"-r=x+x->2*x"
},
{
"testdata/stdin*.input"
,
"-stdin"
},
{
"testdata/stdin*.input"
,
"-stdin"
},
{
"testdata/comments.input"
,
""
},
{
"testdata/comments.input"
,
""
},
{
"testdata/import.input"
,
""
},
{
"testdata/import.input"
,
""
},
...
...
src/cmd/gofmt/rewrite.go
View file @
96a609c2
...
@@ -55,6 +55,7 @@ func dump(msg string, val reflect.Value) {
...
@@ -55,6 +55,7 @@ func dump(msg string, val reflect.Value) {
// rewriteFile applies the rewrite rule 'pattern -> replace' to an entire file.
// rewriteFile applies the rewrite rule 'pattern -> replace' to an entire file.
func
rewriteFile
(
pattern
,
replace
ast
.
Expr
,
p
*
ast
.
File
)
*
ast
.
File
{
func
rewriteFile
(
pattern
,
replace
ast
.
Expr
,
p
*
ast
.
File
)
*
ast
.
File
{
cmap
:=
ast
.
NewCommentMap
(
fileSet
,
p
,
p
.
Comments
)
m
:=
make
(
map
[
string
]
reflect
.
Value
)
m
:=
make
(
map
[
string
]
reflect
.
Value
)
pat
:=
reflect
.
ValueOf
(
pattern
)
pat
:=
reflect
.
ValueOf
(
pattern
)
repl
:=
reflect
.
ValueOf
(
replace
)
repl
:=
reflect
.
ValueOf
(
replace
)
...
@@ -73,7 +74,9 @@ func rewriteFile(pattern, replace ast.Expr, p *ast.File) *ast.File {
...
@@ -73,7 +74,9 @@ func rewriteFile(pattern, replace ast.Expr, p *ast.File) *ast.File {
}
}
return
val
return
val
}
}
return
apply
(
f
,
reflect
.
ValueOf
(
p
))
.
Interface
()
.
(
*
ast
.
File
)
r
:=
apply
(
f
,
reflect
.
ValueOf
(
p
))
.
Interface
()
.
(
*
ast
.
File
)
r
.
Comments
=
cmap
.
Filter
(
r
)
.
Comments
()
// recreate comments list
return
r
}
}
// setValue is a wrapper for x.SetValue(y); it protects
// setValue is a wrapper for x.SetValue(y); it protects
...
...
src/cmd/gofmt/testdata/rewrite5.golden
0 → 100644
View file @
96a609c2
//
Copyright
2011
The
Go
Authors
.
All
rights
reserved
.
//
Use
of
this
source
code
is
governed
by
a
BSD
-
style
//
license
that
can
be
found
in
the
LICENSE
file
.
//
Rewriting
of
expressions
containing
nodes
with
associated
comments
to
//
expressions
without
those
nodes
must
also
eliminate
the
associated
//
comments
.
package
p
func
f
(
x
int
)
int
{
_
=
2
*
x
//
this
comment
remains
in
the
rewrite
_
=
2
*
x
return
2
*
x
}
src/cmd/gofmt/testdata/rewrite5.input
0 → 100644
View file @
96a609c2
//
Copyright
2011
The
Go
Authors
.
All
rights
reserved
.
//
Use
of
this
source
code
is
governed
by
a
BSD
-
style
//
license
that
can
be
found
in
the
LICENSE
file
.
//
Rewriting
of
expressions
containing
nodes
with
associated
comments
to
//
expressions
without
those
nodes
must
also
eliminate
the
associated
//
comments
.
package
p
func
f
(
x
int
)
int
{
_
=
x
+
x
//
this
comment
remains
in
the
rewrite
_
=
x
/*
this
comment
must
not
be
in
the
rewrite
*/
+
x
return
x
/*
this
comment
must
not
be
in
the
rewrite
*/
+
x
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment