builtinprint

package module
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 28, 2019 License: MIT Imports: 2 Imported by: 2

README

builtinprint

godoc.org

builtinprint find builtin print and println calling.

func main() {
	print("hoge")   // want "must not use builtin print"
	println("hoge") // want "must not use builtin println"

	print := func(s string) {}
	print("hoge") // OK

	println := func(s string) {}
	println("hoge") // OK
}

Documentation

Index

Constants

View Source
const Doc = "builtinprint find builtin print and println calling"

Variables

View Source
var Analyzer = &analysis.Analyzer{
	Name: "builtinprint",
	Doc:  Doc,
	Run:  run,
}

Functions

This section is empty.

Types

This section is empty.

Directories

Path Synopsis
cmd

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL