toolsgolang.org/x/tools/go/analysis/passes/unusedwrite Index | Files

package unusedwrite

import "golang.org/x/tools/go/analysis/passes/unusedwrite"

Package unusedwrite checks for unused writes to the elements of a struct or array object.

Index

Constants

const Doc = "" /* 602 byte string literal not displayed */

Doc is a documentation string.

Variables

var Analyzer = &analysis.Analyzer{
	Name:     "unusedwrite",
	Doc:      Doc,
	Requires: []*analysis.Analyzer{buildssa.Analyzer},
	Run:      run,
}

Analyzer reports instances of writes to struct fields and arrays that are never read.

Source Files

unusedwrite.go

Version
v0.3.0
Published
Nov 9, 2022
Platform
js/wasm
Imports
5 packages
Last checked
5 hours ago

Tools for package owners.