package unmarshal

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

The unmarshal package defines an Analyzer that checks for passing non-pointer or non-interface types to unmarshal and decode functions.

Index

Constants

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

Variables

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

Source Files

unmarshal.go

Directories

PathSynopsis
go/analysis/passes/unmarshal/cmd
go/analysis/passes/unmarshal/cmd/unmarshalThe unmarshal command runs the unmarshal analyzer.
Version
v0.3.0
Published
Nov 9, 2022
Platform
js/wasm
Imports
7 packages
Last checked
5 hours ago

Tools for package owners.