1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
package formatter
import (
"github.com/grindlemire/go-tui/internal/tuigen"
)
type Formatter struct {
IndentString string
FixImports bool
}
func New() *Formatter {
return &Formatter{
IndentString: "\t",
FixImports: true,
}
}
func (f *Formatter) Format(filename, source string) (string, error) {
lexer := tuigen.NewLexer(filename, source)
parser := tuigen.NewParser(lexer)
file, err := parser.ParseFile()
if err != nil {
return source, err
}
if f.FixImports {
err = fixImports(file, filename)
if err != nil {
return source, err
}
}
printer := newPrinter(f.IndentString)
return printer.PrintFile(file), nil
}
type FormatResult struct {
Content string
Changed bool
}
func (f *Formatter) FormatWithResult(filename, source string) (FormatResult, error) {
formatted, err := f.Format(filename, source)
if err != nil {
return FormatResult{}, err
}
return FormatResult{
Content: formatted,
Changed: formatted != source,
}, nil
}
|