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 ec1a81b commit cad260eCopy full SHA for cad260e
internal/pkgbits/decoder.go
@@ -23,9 +23,6 @@ type PkgDecoder struct {
23
// version is the file format version.
24
version uint32
25
26
- // aliases determines whether types.Aliases should be created
27
- aliases bool
28
-
29
// sync indicates whether the file uses sync markers.
30
sync bool
31
@@ -76,7 +73,6 @@ func (pr *PkgDecoder) SyncMarkers() bool { return pr.sync }
76
73
func NewPkgDecoder(pkgPath, input string) PkgDecoder {
77
74
pr := PkgDecoder{
78
75
pkgPath: pkgPath,
79
- //aliases: aliases.Enabled(),
80
}
81
82
// TODO(mdempsky): Implement direct indexing of input string to
0 commit comments