aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/gofmt/simplify.go
AgeCommit message (Expand)Author
2016-10-12cmd/gofmt: simplify map key literalsGustav Westling
2016-04-06cmd/gofmt: make gofmt -s simplify slices in presence of dot-importsRobert Griesemer
2014-07-17gofmt: -s flag simplifies "for _ = range x"Robert Griesemer
2014-07-01cmd/gofmt: fix gofmt -s for 3-index slicesRobert Griesemer
2014-07-01gofmt/main: Added removal of empty declaration groups.Simon Whitehead
2013-10-03gofmt: explain why lower bounds aren't automatically simplifiedRobert Hencke
2012-10-31gofmt: simplify slices of the form s[a : len(s)] to s[a:]Robert Griesemer
2012-01-13cmd/gofmt: fix simplify.go by running gofmt on cmd/gofmtOlivier Duperray
2011-12-02gofmt: handle &T in composite literal simplifyRuss Cox
2011-07-14go/printer: changed max. number of newlines from 3 to 2Robert Griesemer
2011-04-25fix tree for reflect renameRuss Cox
2010-12-09go/ast: fix ast.WalkRobert Griesemer
2010-12-09gofmt: simplify "x, _ = range y" to "x = range y"Robert Griesemer
2010-10-22go ast/parser/printer: permit elision of composite literal types for composit...Robert Griesemer