-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstrip.go
128 lines (126 loc) · 2.93 KB
/
strip.go
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package astrid
import (
"go/ast"
"go/token"
)
// StripPosition removes all position information from a node and all
// descendants. This is useful before printing a modified node.
func StripPosition(node ast.Node) {
// notest
ast.Inspect(node, func(node ast.Node) bool {
if node == nil {
return true
}
switch n := node.(type) {
case *ast.Comment:
n.Slash = token.NoPos
case *ast.FieldList:
n.Closing = token.NoPos
n.Opening = token.NoPos
case *ast.BadExpr:
n.From = token.NoPos
n.To = token.NoPos
case *ast.Ident:
n.NamePos = token.NoPos
case *ast.BasicLit:
n.ValuePos = token.NoPos
case *ast.Ellipsis:
n.Ellipsis = token.NoPos
case *ast.CompositeLit:
n.Lbrace = token.NoPos
n.Rbrace = token.NoPos
case *ast.ParenExpr:
n.Lparen = token.NoPos
n.Rparen = token.NoPos
case *ast.IndexExpr:
n.Lbrack = token.NoPos
n.Rbrack = token.NoPos
case *ast.SliceExpr:
n.Rbrack = token.NoPos
n.Lbrack = token.NoPos
case *ast.TypeAssertExpr:
n.Rparen = token.NoPos
n.Lparen = token.NoPos
case *ast.CallExpr:
n.Rparen = token.NoPos
n.Lparen = token.NoPos
n.Ellipsis = token.NoPos
case *ast.StarExpr:
n.Star = token.NoPos
case *ast.UnaryExpr:
n.OpPos = token.NoPos
case *ast.BinaryExpr:
n.OpPos = token.NoPos
case *ast.KeyValueExpr:
n.Colon = token.NoPos
case *ast.ArrayType:
n.Lbrack = token.NoPos
case *ast.StructType:
n.Struct = token.NoPos
case *ast.FuncType:
n.Func = token.NoPos
case *ast.InterfaceType:
n.Interface = token.NoPos
case *ast.MapType:
n.Map = token.NoPos
case *ast.ChanType:
n.Arrow = token.NoPos
n.Begin = token.NoPos
case *ast.BadStmt:
n.From = token.NoPos
n.To = token.NoPos
case *ast.EmptyStmt:
n.Semicolon = token.NoPos
case *ast.LabeledStmt:
n.Colon = token.NoPos
case *ast.SendStmt:
n.Arrow = token.NoPos
case *ast.IncDecStmt:
n.TokPos = token.NoPos
case *ast.AssignStmt:
n.TokPos = token.NoPos
case *ast.GoStmt:
n.Go = token.NoPos
case *ast.DeferStmt:
n.Defer = token.NoPos
case *ast.ReturnStmt:
n.Return = token.NoPos
case *ast.BranchStmt:
n.TokPos = token.NoPos
case *ast.BlockStmt:
n.Lbrace = token.NoPos
n.Rbrace = token.NoPos
case *ast.IfStmt:
n.If = token.NoPos
case *ast.CaseClause:
n.Case = token.NoPos
n.Colon = token.NoPos
case *ast.SwitchStmt:
n.Switch = token.NoPos
case *ast.TypeSwitchStmt:
n.Switch = token.NoPos
case *ast.CommClause:
n.Colon = token.NoPos
n.Case = token.NoPos
case *ast.SelectStmt:
n.Select = token.NoPos
case *ast.ForStmt:
n.For = token.NoPos
case *ast.RangeStmt:
n.For = token.NoPos
n.TokPos = token.NoPos
case *ast.ImportSpec:
n.EndPos = token.NoPos
case *ast.BadDecl:
n.From = token.NoPos
n.To = token.NoPos
case *ast.GenDecl:
n.TokPos = token.NoPos
n.Lparen = token.NoPos
n.Rparen = token.NoPos
case *ast.File:
n.Package = token.NoPos
}
return true
})
}