We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86f13a9 commit 2f1b076Copy full SHA for 2f1b076
go/ast/astutil/util.go
@@ -8,4 +8,6 @@ import "go/ast"
8
9
// Unparen returns e with any enclosing parentheses stripped.
10
// Deprecated: use [ast.Unparen].
11
+//
12
+//go:fix inline
13
func Unparen(e ast.Expr) ast.Expr { return ast.Unparen(e) }
go/packages/packages.go
@@ -141,6 +141,8 @@ const (
141
LoadAllSyntax = LoadSyntax | NeedDeps
142
143
// Deprecated: NeedExportsFile is a historical misspelling of NeedExportFile.
144
+ //
145
+ //go:fix inline
146
NeedExportsFile = NeedExportFile
147
)
148
0 commit comments