| // 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. |
| `Adapt code from filepath.[List]SeparatorString to string(filepath.[List]Separator). |
| http://codereview.appspot.com/4527090 |
| func filepathFunc(f *ast.File) (fixed bool) { |
| if !imports(f, "path/filepath") { |
| walk(f, func(n interface{}) { |
| case isPkgDot(*e, "filepath", "SeparatorString"): |
| ident = "filepath.Separator" |
| case isPkgDot(*e, "filepath", "ListSeparatorString"): |
| ident = "filepath.ListSeparator" |
| // string(filepath.[List]Separator) |
| Fun: ast.NewIdent("string"), |
| Args: []ast.Expr{ast.NewIdent(ident)}, |