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

package usesgenerics

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

Package usesgenerics defines an Analyzer that checks for usage of generic features added in Go 1.18.

Index

Constants

const (
	GenericTypeDecls  = genericfeatures.GenericTypeDecls
	GenericFuncDecls  = genericfeatures.GenericFuncDecls
	EmbeddedTypeSets  = genericfeatures.EmbeddedTypeSets
	TypeInstantiation = genericfeatures.TypeInstantiation
	FuncInstantiation = genericfeatures.FuncInstantiation
)
const Doc = "" /* 192 byte string literal not displayed */

Variables

var Analyzer = &analysis.Analyzer{
	Name:       "usesgenerics",
	Doc:        Doc,
	Requires:   []*analysis.Analyzer{inspect.Analyzer},
	Run:        run,
	ResultType: reflect.TypeOf((*Result)(nil)),
	FactTypes:  []analysis.Fact{new(featuresFact)},
}

Types

type Features

type Features = genericfeatures.Features

type Result

type Result struct {
	Direct, Transitive Features
}

Result is the usesgenerics analyzer result type. The Direct field records features used directly by the package being analyzed (i.e. contained in the package source code). The Transitive field records any features used by the package or any of its transitive imports.

Source Files

usesgenerics.go

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

Tools for package owners.