fix: not copy import spec directly but use basic lit
parent
5e87f5eca8
commit
c8a2bac5f1
|
@ -8,7 +8,6 @@ import (
|
||||||
"go/parser"
|
"go/parser"
|
||||||
"go/printer"
|
"go/printer"
|
||||||
"go/token"
|
"go/token"
|
||||||
"log"
|
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -290,7 +289,12 @@ func (ft *Formatter) formatImportSpecs(
|
||||||
|
|
||||||
if stdImportSpecs, ok := groupedImportSpecs[stdImport]; ok && len(stdImportSpecs) != 0 {
|
if stdImportSpecs, ok := groupedImportSpecs[stdImport]; ok && len(stdImportSpecs) != 0 {
|
||||||
for _, importSpec := range stdImportSpecs {
|
for _, importSpec := range stdImportSpecs {
|
||||||
result = append(result, importSpec)
|
result = append(result, &ast.ImportSpec{
|
||||||
|
Path: &ast.BasicLit{
|
||||||
|
Value: importSpec.Path.Value,
|
||||||
|
Kind: token.IMPORT,
|
||||||
|
},
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -305,7 +309,12 @@ func (ft *Formatter) formatImportSpecs(
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, importSpec := range thirdPartImportSpecs {
|
for _, importSpec := range thirdPartImportSpecs {
|
||||||
result = append(result, importSpec)
|
result = append(result, &ast.ImportSpec{
|
||||||
|
Path: &ast.BasicLit{
|
||||||
|
Value: importSpec.Path.Value,
|
||||||
|
Kind: token.IMPORT,
|
||||||
|
},
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -321,7 +330,12 @@ func (ft *Formatter) formatImportSpecs(
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, importSpec := range companyImportSpecs {
|
for _, importSpec := range companyImportSpecs {
|
||||||
result = append(result, importSpec)
|
result = append(result, &ast.ImportSpec{
|
||||||
|
Path: &ast.BasicLit{
|
||||||
|
Value: importSpec.Path.Value,
|
||||||
|
Kind: token.IMPORT,
|
||||||
|
},
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -337,7 +351,12 @@ func (ft *Formatter) formatImportSpecs(
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, importSpec := range localImportSpecs {
|
for _, importSpec := range localImportSpecs {
|
||||||
result = append(result, importSpec)
|
result = append(result, &ast.ImportSpec{
|
||||||
|
Path: &ast.BasicLit{
|
||||||
|
Value: importSpec.Path.Value,
|
||||||
|
Kind: token.IMPORT,
|
||||||
|
},
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -401,31 +420,3 @@ func (ft *Formatter) moduleName(path string) (string, error) {
|
||||||
|
|
||||||
return result, nil
|
return result, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wrap log.Printf with verbose flag
|
|
||||||
func (ft *Formatter) log(format string, v ...any) {
|
|
||||||
if ft.isVerbose {
|
|
||||||
log.Printf(format, v...)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ft *Formatter) logImportSpecs(logPrefix string, importSpecs []*ast.ImportSpec) {
|
|
||||||
if ft.isVerbose {
|
|
||||||
for _, importSpec := range importSpecs {
|
|
||||||
log.Printf("%s: importSpec: %+v %+v\n", logPrefix, importSpec.Name.String(), importSpec.Path.Value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ft *Formatter) mustLogImportSpecs(logPrefix string, importSpecs []ast.Spec) {
|
|
||||||
if ft.isVerbose {
|
|
||||||
for _, importSpec := range importSpecs {
|
|
||||||
importSpec, ok := importSpec.(*ast.ImportSpec)
|
|
||||||
if !ok {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Printf("%s: importSpec: %+v %+v\n", logPrefix, importSpec.Name.String(), importSpec.Path.Value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
package imports
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go/ast"
|
||||||
|
"log"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Wrap log.Printf with verbose flag
|
||||||
|
func (ft *Formatter) log(format string, v ...any) {
|
||||||
|
if ft.isVerbose {
|
||||||
|
log.Printf(format, v...)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ft *Formatter) logImportSpecs(logPrefix string, importSpecs []*ast.ImportSpec) {
|
||||||
|
if ft.isVerbose {
|
||||||
|
for _, importSpec := range importSpecs {
|
||||||
|
log.Printf("%s: importSpec: %+v %+v\n", logPrefix, importSpec.Name.String(), importSpec.Path.Value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ft *Formatter) mustLogImportSpecs(logPrefix string, importSpecs []ast.Spec) {
|
||||||
|
if ft.isVerbose {
|
||||||
|
for _, importSpec := range importSpecs {
|
||||||
|
importSpec, ok := importSpec.(*ast.ImportSpec)
|
||||||
|
if !ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Printf("%s: importSpec: %+v %+v\n", logPrefix, importSpec.Name.String(), importSpec.Path.Value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue