package eg

import "golang.org/x/tools/refactor/eg"

Package eg implements the example-based refactoring tool whose command-line is defined in golang.org/x/tools/cmd/eg.

Index

Constants

const Help = "" /* 4318 byte string literal not displayed */

Functions

func WriteAST

func WriteAST(fset *token.FileSet, filename string, f *ast.File) (err error)

WriteAST is a convenience function that writes AST f to the specified file.

Types

type Transformer

type Transformer struct {
	// contains filtered or unexported fields
}

A Transformer represents a single example-based transformation.

func NewTransformer

func NewTransformer(fset *token.FileSet, tmplPkg *types.Package, tmplFile *ast.File, tmplInfo *types.Info, verbose bool) (*Transformer, error)

NewTransformer returns a transformer based on the specified template, a single-file package containing "before" and "after" functions as described in the package documentation. tmplInfo is the type information for tmplFile.

func (*Transformer) Transform

func (tr *Transformer) Transform(info *types.Info, pkg *types.Package, file *ast.File) int

Transform applies the transformation to the specified parsed file, whose type information is supplied in info, and returns the number of replacements that were made.

It mutates the AST in place (the identity of the root node is unchanged), and may add nodes for which no type information is available in info.

Derived from rewriteFile in $GOROOT/src/cmd/gofmt/rewrite.go.

Source Files

eg.go match.go rewrite.go

Version
v0.30.0 (latest)
Published
Feb 10, 2025
Platform
linux/amd64
Imports
15 packages
Last checked
5 hours ago

Tools for package owners.