ast

ast

https://pkg.go.dev/go/ast@go1.20.1

Package ast declares the types used to represent syntax trees for Go packages.

常量

This section is empty.

变量

This section is empty.

函数

func FileExports

1
func FileExports(src *File) bool

FileExports trims the AST for a Go source file in place such that only exported nodes remain: all top-level identifiers which are not exported and their associated information (such as type, initial value, or function body) are removed. Non-exported fields and methods of exported types are stripped. The File.Comments list is not changed.

FileExports reports whether there are exported declarations.

func FilterDecl

1
func FilterDecl(decl Decl, f Filter) bool

FilterDecl trims the AST for a Go declaration in place by removing all names (including struct field and interface method names, but not from parameter lists) that don’t pass through the filter f.

FilterDecl reports whether there are any declared names left after filtering.

func FilterFile

1
func FilterFile(src *File, f Filter) bool

FilterFile trims the AST for a Go file in place by removing all names from top-level declarations (including struct field and interface method names, but not from parameter lists) that don’t pass through the filter f. If the declaration is empty afterwards, the declaration is removed from the AST. Import declarations are always removed. The File.Comments list is not changed.

FilterFile reports whether there are any top-level declarations left after filtering.

func FilterPackage

1
func FilterPackage(pkg *Package, f Filter) bool

FilterPackage trims the AST for a Go package in place by removing all names from top-level declarations (including struct field and interface method names, but not from parameter lists) that don’t pass through the filter f. If the declaration is empty afterwards, the declaration is removed from the AST. The pkg.Files list is not changed, so that file names and top-level package comments don’t get lost.

FilterPackage reports whether there are any top-level declarations left after filtering.

func Fprint

1
func Fprint(w io.Writer, fset *token.FileSet, x any, f FieldFilter) error

Fprint prints the (sub-)tree starting at AST node x to w. If fset != nil, position information is interpreted relative to that file set. Otherwise positions are printed as integer values (file set specific offsets).

A non-nil FieldFilter f may be provided to control the output: struct fields for which f(fieldname, fieldvalue) is true are printed; all others are filtered from the output. Unexported struct fields are never printed.

func Inspect

1
func Inspect(node Node, f func(Node) bool)

Inspect traverses an AST in depth-first order: It starts by calling f(node); node must not be nil. If f returns true, Inspect invokes f recursively for each of the non-nil children of node, followed by a call of f(nil).

Example

func IsExported

1
func IsExported(name string) bool

IsExported reports whether name starts with an upper-case letter.

func NotNilFilter

1
func NotNilFilter(_ string, v reflect.Value) bool

NotNilFilter returns true for field values that are not nil; it returns false otherwise.

func PackageExports

1
func PackageExports(pkg *Package) bool

PackageExports trims the AST for a Go package in place such that only exported nodes remain. The pkg.Files list is not changed, so that file names and top-level package comments don’t get lost.

PackageExports reports whether there are exported declarations; it returns false otherwise.

func Print

1
func Print(fset *token.FileSet, x any) error

Print prints x to standard output, skipping nil fields. Print(fset, x) is the same as Fprint(os.Stdout, fset, x, NotNilFilter).

Example

func SortImports

1
func SortImports(fset *token.FileSet, f *File)

SortImports sorts runs of consecutive import lines in import blocks in f. It also removes duplicate imports when it is possible to do so without data loss.

func Walk

1
func Walk(v Visitor, node Node)

Walk traverses an AST in depth-first order: It starts by calling v.Visit(node); node must not be nil. If the visitor w returned by v.Visit(node) is not nil, Walk is invoked recursively with visitor w for each of the non-nil children of node, followed by a call of w.Visit(nil).

类型

type ArrayType

1
2
3
4
5
type ArrayType struct {
	Lbrack token.Pos // position of "["
	Len    Expr      // Ellipsis node for [...]T array types, nil for slice types
	Elt    Expr      // element type
}

An ArrayType node represents an array or slice type.

(*ArrayType) End

1
func (x *ArrayType) End() token.Pos

(*ArrayType) Pos

1
func (x *ArrayType) Pos() token.Pos

type AssignStmt

1
2
3
4
5
6
type AssignStmt struct {
	Lhs    []Expr
	TokPos token.Pos   // position of Tok
	Tok    token.Token // assignment token, DEFINE
	Rhs    []Expr
}

An AssignStmt node represents an assignment or a short variable declaration.

(*AssignStmt) End

1
func (s *AssignStmt) End() token.Pos

(*AssignStmt) Pos

1
func (s *AssignStmt) Pos() token.Pos

type BadDecl

1
2
3
type BadDecl struct {
	From, To token.Pos // position range of bad declaration
}

A BadDecl node is a placeholder for a declaration containing syntax errors for which a correct declaration node cannot be created.

(*BadDecl) End

1
func (d *BadDecl) End() token.Pos

(*BadDecl) Pos

1
func (d *BadDecl) Pos() token.Pos

type BadExpr

1
2
3
type BadExpr struct {
	From, To token.Pos // position range of bad expression
}

A BadExpr node is a placeholder for an expression containing syntax errors for which a correct expression node cannot be created.

(*BadExpr) End

1
func (x *BadExpr) End() token.Pos

(*BadExpr) Pos

1
func (x *BadExpr) Pos() token.Pos

type BadStmt

1
2
3
type BadStmt struct {
	From, To token.Pos // position range of bad statement
}

A BadStmt node is a placeholder for statements containing syntax errors for which no correct statement nodes can be created.

(*BadStmt) End

1
func (s *BadStmt) End() token.Pos

(*BadStmt) Pos

1
func (s *BadStmt) Pos() token.Pos

type BasicLit

1
2
3
4
5
type BasicLit struct {
	ValuePos token.Pos   // literal position
	Kind     token.Token // token.INT, token.FLOAT, token.IMAG, token.CHAR, or token.STRING
	Value    string      // literal string; e.g. 42, 0x7f, 3.14, 1e-9, 2.4i, 'a', '\x7f', "foo" or `\m\n\o`
}

A BasicLit node represents a literal of basic type.

(*BasicLit) End

1
func (x *BasicLit) End() token.Pos

(*BasicLit) Pos

1
func (x *BasicLit) Pos() token.Pos

type BinaryExpr

1
2
3
4
5
6
type BinaryExpr struct {
	X     Expr        // left operand
	OpPos token.Pos   // position of Op
	Op    token.Token // operator
	Y     Expr        // right operand
}

A BinaryExpr node represents a binary expression.

(*BinaryExpr) End

1
func (x *BinaryExpr) End() token.Pos

(*BinaryExpr) Pos

1
func (x *BinaryExpr) Pos() token.Pos

type BlockStmt

1
2
3
4
5
type BlockStmt struct {
	Lbrace token.Pos // position of "{"
	List   []Stmt
	Rbrace token.Pos // position of "}", if any (may be absent due to syntax error)
}

A BlockStmt node represents a braced statement list.

(*BlockStmt) End

1
func (s *BlockStmt) End() token.Pos

(*BlockStmt) Pos

1
func (s *BlockStmt) Pos() token.Pos

type BranchStmt

1
2
3
4
5
type BranchStmt struct {
	TokPos token.Pos   // position of Tok
	Tok    token.Token // keyword token (BREAK, CONTINUE, GOTO, FALLTHROUGH)
	Label  *Ident      // label name; or nil
}

A BranchStmt node represents a break, continue, goto, or fallthrough statement.

(*BranchStmt) End

1
func (s *BranchStmt) End() token.Pos

(*BranchStmt) Pos

1
func (s *BranchStmt) Pos() token.Pos

type CallExpr

1
2
3
4
5
6
7
type CallExpr struct {
	Fun      Expr      // function expression
	Lparen   token.Pos // position of "("
	Args     []Expr    // function arguments; or nil
	Ellipsis token.Pos // position of "..." (token.NoPos if there is no "...")
	Rparen   token.Pos // position of ")"
}

A CallExpr node represents an expression followed by an argument list.

(*CallExpr) End

1
func (x *CallExpr) End() token.Pos

(*CallExpr) Pos

1
func (x *CallExpr) Pos() token.Pos

type CaseClause

1
2
3
4
5
6
type CaseClause struct {
	Case  token.Pos // position of "case" or "default" keyword
	List  []Expr    // list of expressions or types; nil means default case
	Colon token.Pos // position of ":"
	Body  []Stmt    // statement list; or nil
}

A CaseClause represents a case of an expression or type switch statement.

(*CaseClause) End

1
func (s *CaseClause) End() token.Pos

(*CaseClause) Pos

1
func (s *CaseClause) Pos() token.Pos

type ChanDir

1
type ChanDir int

The direction of a channel type is indicated by a bit mask including one or both of the following constants.

1
2
3
4
const (
	SEND ChanDir = 1 << iota
	RECV
)

type ChanType

1
2
3
4
5
6
type ChanType struct {
	Begin token.Pos // position of "chan" keyword or "<-" (whichever comes first)
	Arrow token.Pos // position of "<-" (token.NoPos if there is no "<-")
	Dir   ChanDir   // channel direction
	Value Expr      // value type
}

A ChanType node represents a channel type.

(*ChanType) End

1
func (x *ChanType) End() token.Pos

(*ChanType) Pos

1
func (x *ChanType) Pos() token.Pos

type CommClause

1
2
3
4
5
6
type CommClause struct {
	Case  token.Pos // position of "case" or "default" keyword
	Comm  Stmt      // send or receive statement; nil means default case
	Colon token.Pos // position of ":"
	Body  []Stmt    // statement list; or nil
}

A CommClause node represents a case of a select statement.

(*CommClause) End

1
func (s *CommClause) End() token.Pos

(*CommClause) Pos

1
func (s *CommClause) Pos() token.Pos

type Comment

1
2
3
4
type Comment struct {
	Slash token.Pos // position of "/" starting the comment
	Text  string    // comment text (excluding '\n' for //-style comments)
}

A Comment node represents a single //-style or /*-style comment.

The Text field contains the comment text without carriage returns (\r) that may have been present in the source. Because a comment’s end position is computed using len(Text), the position reported by End() does not match the true source end position for comments containing carriage returns.

(*Comment) End

1
func (c *Comment) End() token.Pos

(*Comment) Pos

1
func (c *Comment) Pos() token.Pos

type CommentGroup

1
2
3
type CommentGroup struct {
	List []*Comment // len(List) > 0
}

A CommentGroup represents a sequence of comments with no other tokens and no empty lines between.

(*CommentGroup) End

1
func (g *CommentGroup) End() token.Pos

(*CommentGroup) Pos

1
func (g *CommentGroup) Pos() token.Pos

(*CommentGroup) Text

1
func (g *CommentGroup) Text() string

Text returns the text of the comment. Comment markers (//, /*, and */), the first space of a line comment, and leading and trailing empty lines are removed. Comment directives like “//line” and “//go:noinline” are also removed. Multiple empty lines are reduced to one, and trailing space on lines is trimmed. Unless the result is empty, it is newline-terminated.

type CommentMap <- go1.1

1
type CommentMap map[Node][]*CommentGroup

A CommentMap maps an AST node to a list of comment groups associated with it. See NewCommentMap for a description of the association.

Example

func NewCommentMap <- go1.1

1
func NewCommentMap(fset *token.FileSet, node Node, comments []*CommentGroup) CommentMap

NewCommentMap creates a new comment map by associating comment groups of the comments list with the nodes of the AST specified by node.

A comment group g is associated with a node n if:

  • g starts on the same line as n ends
  • g starts on the line immediately following n, and there is at least one empty line after g and before the next node
  • g starts before n and is not associated to the node before n via the previous rules

NewCommentMap tries to associate a comment group to the “largest” node possible: For instance, if the comment is a line comment trailing an assignment, the comment is associated with the entire assignment rather than just the last operand in the assignment.

(CommentMap) Comments <- go1.1

1
func (cmap CommentMap) Comments() []*CommentGroup

Comments returns the list of comment groups in the comment map. The result is sorted in source order.

(CommentMap) Filter <- go1.1

1
func (cmap CommentMap) Filter(node Node) CommentMap

Filter returns a new comment map consisting of only those entries of cmap for which a corresponding node exists in the AST specified by node.

(CommentMap) String <- go1.1

1
func (cmap CommentMap) String() string

(CommentMap) Update <- go1.1

1
func (cmap CommentMap) Update(old, new Node) Node

Update replaces an old node in the comment map with the new node and returns the new node. Comments that were associated with the old node are associated with the new node.

type CompositeLit

1
2
3
4
5
6
7
type CompositeLit struct {
	Type       Expr      // literal type; or nil
	Lbrace     token.Pos // position of "{"
	Elts       []Expr    // list of composite elements; or nil
	Rbrace     token.Pos // position of "}"
	Incomplete bool      // true if (source) expressions are missing in the Elts list
}

A CompositeLit node represents a composite literal.

(*CompositeLit) End

1
func (x *CompositeLit) End() token.Pos

(*CompositeLit) Pos

1
func (x *CompositeLit) Pos() token.Pos

type Decl

1
2
3
4
type Decl interface {
	Node
	// contains filtered or unexported methods
}

All declaration nodes implement the Decl interface.

type DeclStmt

1
2
3
type DeclStmt struct {
	Decl Decl // *GenDecl with CONST, TYPE, or VAR token
}

A DeclStmt node represents a declaration in a statement list.

(*DeclStmt) End

1
func (s *DeclStmt) End() token.Pos

(*DeclStmt) Pos

1
func (s *DeclStmt) Pos() token.Pos

type DeferStmt

1
2
3
4
type DeferStmt struct {
	Defer token.Pos // position of "defer" keyword
	Call  *CallExpr
}

A DeferStmt node represents a defer statement.

(*DeferStmt) End

1
func (s *DeferStmt) End() token.Pos

(*DeferStmt) Pos

1
func (s *DeferStmt) Pos() token.Pos

type Ellipsis

1
2
3
4
type Ellipsis struct {
	Ellipsis token.Pos // position of "..."
	Elt      Expr      // ellipsis element type (parameter lists only); or nil
}

An Ellipsis node stands for the “…” type in a parameter list or the “…” length in an array type.

(*Ellipsis) End

1
func (x *Ellipsis) End() token.Pos

(*Ellipsis) Pos

1
func (x *Ellipsis) Pos() token.Pos

type EmptyStmt

1
2
3
4
type EmptyStmt struct {
	Semicolon token.Pos // position of following ";"
	Implicit  bool      // if set, ";" was omitted in the source
}

An EmptyStmt node represents an empty statement. The “position” of the empty statement is the position of the immediately following (explicit or implicit) semicolon.

(*EmptyStmt) End

1
func (s *EmptyStmt) End() token.Pos

(*EmptyStmt) Pos

1
func (s *EmptyStmt) Pos() token.Pos

type Expr

1
2
3
4
type Expr interface {
	Node
	// contains filtered or unexported methods
}

All expression nodes implement the Expr interface.

type ExprStmt

1
2
3
type ExprStmt struct {
	X Expr // expression
}

An ExprStmt node represents a (stand-alone) expression in a statement list.

(*ExprStmt) End

1
func (s *ExprStmt) End() token.Pos

(*ExprStmt) Pos

1
func (s *ExprStmt) Pos() token.Pos

type Field

1
2
3
4
5
6
7
type Field struct {
	Doc     *CommentGroup // associated documentation; or nil
	Names   []*Ident      // field/method/(type) parameter names; or nil
	Type    Expr          // field/method/parameter type; or nil
	Tag     *BasicLit     // field tag; or nil
	Comment *CommentGroup // line comments; or nil
}

A Field represents a Field declaration list in a struct type, a method list in an interface type, or a parameter/result declaration in a signature. Field.Names is nil for unnamed parameters (parameter lists which only contain types) and embedded struct fields. In the latter case, the field name is the type name.

(*Field) End

1
func (f *Field) End() token.Pos

(*Field) Pos

1
func (f *Field) Pos() token.Pos

type FieldFilter

1
type FieldFilter func(name string, value reflect.Value) bool

A FieldFilter may be provided to Fprint to control the output.

type FieldList

1
2
3
4
5
type FieldList struct {
	Opening token.Pos // position of opening parenthesis/brace/bracket, if any
	List    []*Field  // field list; or nil
	Closing token.Pos // position of closing parenthesis/brace/bracket, if any
}

A FieldList represents a list of Fields, enclosed by parentheses, curly braces, or square brackets.

(*FieldList) End

1
func (f *FieldList) End() token.Pos

(*FieldList) NumFields

1
func (f *FieldList) NumFields() int

NumFields returns the number of parameters or struct fields represented by a FieldList.

(*FieldList) Pos

1
func (f *FieldList) Pos() token.Pos

type File

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
type File struct {
	Doc     *CommentGroup // associated documentation; or nil
	Package token.Pos     // position of "package" keyword
	Name    *Ident        // package name
	Decls   []Decl        // top-level declarations; or nil

	FileStart, FileEnd token.Pos       // start and end of entire file
	Scope              *Scope          // package scope (this file only)
	Imports            []*ImportSpec   // imports in this file
	Unresolved         []*Ident        // unresolved identifiers in this file
	Comments           []*CommentGroup // list of all comments in the source file
}

A File node represents a Go source file.

The Comments list contains all comments in the source file in order of appearance, including the comments that are pointed to from other nodes via Doc and Comment fields.

For correct printing of source code containing comments (using packages go/format and go/printer), special care must be taken to update comments when a File’s syntax tree is modified: For printing, comments are interspersed between tokens based on their position. If syntax tree nodes are removed or moved, relevant comments in their vicinity must also be removed (from the File.Comments list) or moved accordingly (by updating their positions). A CommentMap may be used to facilitate some of these operations.

Whether and how a comment is associated with a node depends on the interpretation of the syntax tree by the manipulating program: Except for Doc and Comment comments directly associated with nodes, the remaining comments are “free-floating” (see also issues #18593, #20744).

func MergePackageFiles

1
func MergePackageFiles(pkg *Package, mode MergeMode) *File

MergePackageFiles creates a file AST by merging the ASTs of the files belonging to a package. The mode flags control merging behavior.

(*File) End

1
func (f *File) End() token.Pos

End returns the end of the last declaration in the file. (Use FileEnd for the end of the entire file.)

(*File) Pos

1
func (f *File) Pos() token.Pos

Pos returns the position of the package declaration. (Use FileStart for the start of the entire file.)

type Filter

1
type Filter func(string) bool

type ForStmt

1
2
3
4
5
6
7
type ForStmt struct {
	For  token.Pos // position of "for" keyword
	Init Stmt      // initialization statement; or nil
	Cond Expr      // condition; or nil
	Post Stmt      // post iteration statement; or nil
	Body *BlockStmt
}

A ForStmt represents a for statement.

(*ForStmt) End

1
func (s *ForStmt) End() token.Pos

(*ForStmt) Pos

1
func (s *ForStmt) Pos() token.Pos

type FuncDecl

1
2
3
4
5
6
7
type FuncDecl struct {
	Doc  *CommentGroup // associated documentation; or nil
	Recv *FieldList    // receiver (methods); or nil (functions)
	Name *Ident        // function/method name
	Type *FuncType     // function signature: type and value parameters, results, and position of "func" keyword
	Body *BlockStmt    // function body; or nil for external (non-Go) function
}

A FuncDecl node represents a function declaration.

(*FuncDecl) End

1
func (d *FuncDecl) End() token.Pos

(*FuncDecl) Pos

1
func (d *FuncDecl) Pos() token.Pos

type FuncLit

1
2
3
4
type FuncLit struct {
	Type *FuncType  // function type
	Body *BlockStmt // function body
}

A FuncLit node represents a function literal.

(*FuncLit) End

1
func (x *FuncLit) End() token.Pos

(*FuncLit) Pos

1
func (x *FuncLit) Pos() token.Pos

type FuncType

1
2
3
4
5
6
type FuncType struct {
	Func       token.Pos  // position of "func" keyword (token.NoPos if there is no "func")
	TypeParams *FieldList // type parameters; or nil
	Params     *FieldList // (incoming) parameters; non-nil
	Results    *FieldList // (outgoing) results; or nil
}

A FuncType node represents a function type.

(*FuncType) End

1
func (x *FuncType) End() token.Pos

(*FuncType) Pos

1
func (x *FuncType) Pos() token.Pos

type GenDecl

1
2
3
4
5
6
7
8
type GenDecl struct {
	Doc    *CommentGroup // associated documentation; or nil
	TokPos token.Pos     // position of Tok
	Tok    token.Token   // IMPORT, CONST, TYPE, or VAR
	Lparen token.Pos     // position of '(', if any
	Specs  []Spec
	Rparen token.Pos // position of ')', if any
}

A GenDecl node (generic declaration node) represents an import, constant, type or variable declaration. A valid Lparen position (Lparen.IsValid()) indicates a parenthesized declaration.

Relationship between Tok value and Specs element type:

token.IMPORT  *ImportSpec
token.CONST   *ValueSpec
token.TYPE    *TypeSpec
token.VAR     *ValueSpec

(*GenDecl) End

1
func (d *GenDecl) End() token.Pos

(*GenDecl) Pos

1
func (d *GenDecl) Pos() token.Pos

type GoStmt

1
2
3
4
type GoStmt struct {
	Go   token.Pos // position of "go" keyword
	Call *CallExpr
}

A GoStmt node represents a go statement.

(*GoStmt) End

1
func (s *GoStmt) End() token.Pos

(*GoStmt) Pos

1
func (s *GoStmt) Pos() token.Pos

type Ident

1
2
3
4
5
type Ident struct {
	NamePos token.Pos // identifier position
	Name    string    // identifier name
	Obj     *Object   // denoted object; or nil
}

An Ident node represents an identifier.

func NewIdent

1
func NewIdent(name string) *Ident

NewIdent creates a new Ident without position. Useful for ASTs generated by code other than the Go parser.

(*Ident) End

1
func (x *Ident) End() token.Pos

(*Ident) IsExported

1
func (id *Ident) IsExported() bool

IsExported reports whether id starts with an upper-case letter.

(*Ident) Pos

1
func (x *Ident) Pos() token.Pos

(*Ident) String

1
func (id *Ident) String() string

type IfStmt

1
2
3
4
5
6
7
type IfStmt struct {
	If   token.Pos // position of "if" keyword
	Init Stmt      // initialization statement; or nil
	Cond Expr      // condition
	Body *BlockStmt
	Else Stmt // else branch; or nil
}

An IfStmt node represents an if statement.

(*IfStmt) End

1
func (s *IfStmt) End() token.Pos

(*IfStmt) Pos

1
func (s *IfStmt) Pos() token.Pos

type ImportSpec

1
2
3
4
5
6
7
type ImportSpec struct {
	Doc     *CommentGroup // associated documentation; or nil
	Name    *Ident        // local package name (including "."); or nil
	Path    *BasicLit     // import path
	Comment *CommentGroup // line comments; or nil
	EndPos  token.Pos     // end of spec (overrides Path.Pos if nonzero)
}

An ImportSpec node represents a single package import.

(*ImportSpec) End

1
func (s *ImportSpec) End() token.Pos

(*ImportSpec) Pos

1
func (s *ImportSpec) Pos() token.Pos

type Importer

1
type Importer func(imports map[string]*Object, path string) (pkg *Object, err error)

An Importer resolves import paths to package Objects. The imports map records the packages already imported, indexed by package id (canonical import path). An Importer must determine the canonical import path and check the map to see if it is already present in the imports map. If so, the Importer can return the map entry. Otherwise, the Importer should load the package data for the given path into a new *Object (pkg), record pkg in the imports map, and then return pkg.

type IncDecStmt

1
2
3
4
5
type IncDecStmt struct {
	X      Expr
	TokPos token.Pos   // position of Tok
	Tok    token.Token // INC or DEC
}

An IncDecStmt node represents an increment or decrement statement.

(*IncDecStmt) End

1
func (s *IncDecStmt) End() token.Pos

(*IncDecStmt) Pos

1
func (s *IncDecStmt) Pos() token.Pos

type IndexExpr

1
2
3
4
5
6
type IndexExpr struct {
	X      Expr      // expression
	Lbrack token.Pos // position of "["
	Index  Expr      // index expression
	Rbrack token.Pos // position of "]"
}

An IndexExpr node represents an expression followed by an index.

(*IndexExpr) End

1
func (x *IndexExpr) End() token.Pos

(*IndexExpr) Pos

1
func (x *IndexExpr) Pos() token.Pos

type IndexListExpr <- go1.18

1
2
3
4
5
6
type IndexListExpr struct {
	X       Expr      // expression
	Lbrack  token.Pos // position of "["
	Indices []Expr    // index expressions
	Rbrack  token.Pos // position of "]"
}

An IndexListExpr node represents an expression followed by multiple indices.

(*IndexListExpr) End <- go1.18

1
func (x *IndexListExpr) End() token.Pos

(*IndexListExpr) Pos <- go1.18

1
func (x *IndexListExpr) Pos() token.Pos

type InterfaceType

1
2
3
4
5
type InterfaceType struct {
	Interface  token.Pos  // position of "interface" keyword
	Methods    *FieldList // list of embedded interfaces, methods, or types
	Incomplete bool       // true if (source) methods or types are missing in the Methods list
}

An InterfaceType node represents an interface type.

(*InterfaceType) End

1
func (x *InterfaceType) End() token.Pos

(*InterfaceType) Pos

1
func (x *InterfaceType) Pos() token.Pos

type KeyValueExpr

1
2
3
4
5
type KeyValueExpr struct {
	Key   Expr
	Colon token.Pos // position of ":"
	Value Expr
}

A KeyValueExpr node represents (key : value) pairs in composite literals.

(*KeyValueExpr) End

1
func (x *KeyValueExpr) End() token.Pos

(*KeyValueExpr) Pos

1
func (x *KeyValueExpr) Pos() token.Pos

type LabeledStmt

1
2
3
4
5
type LabeledStmt struct {
	Label *Ident
	Colon token.Pos // position of ":"
	Stmt  Stmt
}

A LabeledStmt node represents a labeled statement.

(*LabeledStmt) End

1
func (s *LabeledStmt) End() token.Pos

(*LabeledStmt) Pos

1
func (s *LabeledStmt) Pos() token.Pos

type MapType

1
2
3
4
5
type MapType struct {
	Map   token.Pos // position of "map" keyword
	Key   Expr
	Value Expr
}

A MapType node represents a map type.

(*MapType) End

1
func (x *MapType) End() token.Pos

(*MapType) Pos

1
func (x *MapType) Pos() token.Pos

type MergeMode

1
type MergeMode uint

The MergeMode flags control the behavior of MergePackageFiles.

1
2
3
4
5
6
7
8
9
const (
	// If set, duplicate function declarations are excluded.
	FilterFuncDuplicates MergeMode = 1 << iota
	// If set, comments that are not associated with a specific
	// AST node (as Doc or Comment) are excluded.
	FilterUnassociatedComments
	// If set, duplicate import declarations are excluded.
	FilterImportDuplicates
)

type Node

1
2
3
4
type Node interface {
	Pos() token.Pos // position of first character belonging to the node
	End() token.Pos // position of first character immediately after the node
}

All node types implement the Node interface.

type ObjKind

1
type ObjKind int

ObjKind describes what an object represents.

1
2
3
4
5
6
7
8
9
const (
	Bad ObjKind = iota // for error handling
	Pkg                // package
	Con                // constant
	Typ                // type
	Var                // variable
	Fun                // function or method
	Lbl                // label
)

The list of possible Object kinds.

(ObjKind) String

1
func (kind ObjKind) String() string

type Object

1
2
3
4
5
6
7
type Object struct {
	Kind ObjKind
	Name string // declared name
	Decl any    // corresponding Field, XxxSpec, FuncDecl, LabeledStmt, AssignStmt, Scope; or nil
	Data any    // object-specific data; or nil
	Type any    // placeholder for type information; may be nil
}

An Object describes a named language entity such as a package, constant, type, variable, function (incl. methods), or label.

The Data fields contains object-specific data:

Kind    Data type         Data value
Pkg     *Scope            package scope
Con     int               iota for the respective declaration

func NewObj

1
func NewObj(kind ObjKind, name string) *Object

NewObj creates a new object of a given kind and name.

(*Object) Pos

1
func (obj *Object) Pos() token.Pos

Pos computes the source position of the declaration of an object name. The result may be an invalid position if it cannot be computed (obj.Decl may be nil or not correct).

type Package

1
2
3
4
5
6
type Package struct {
	Name    string             // package name
	Scope   *Scope             // package scope across all files
	Imports map[string]*Object // map of package id -> package object
	Files   map[string]*File   // Go source files by filename
}

A Package node represents a set of source files collectively building a Go package.

func NewPackage

1
func NewPackage(fset *token.FileSet, files map[string]*File, importer Importer, universe *Scope) (*Package, error)

NewPackage creates a new Package node from a set of File nodes. It resolves unresolved identifiers across files and updates each file’s Unresolved list accordingly. If a non-nil importer and universe scope are provided, they are used to resolve identifiers not declared in any of the package files. Any remaining unresolved identifiers are reported as undeclared. If the files belong to different packages, one package name is selected and files with different package names are reported and then ignored. The result is a package node and a scanner.ErrorList if there were errors.

(*Package) End

1
func (p *Package) End() token.Pos

(*Package) Pos

1
func (p *Package) Pos() token.Pos

type ParenExpr

1
2
3
4
5
type ParenExpr struct {
	Lparen token.Pos // position of "("
	X      Expr      // parenthesized expression
	Rparen token.Pos // position of ")"
}

A ParenExpr node represents a parenthesized expression.

(*ParenExpr) End

1
func (x *ParenExpr) End() token.Pos

(*ParenExpr) Pos

1
func (x *ParenExpr) Pos() token.Pos

type RangeStmt

1
2
3
4
5
6
7
8
9
type RangeStmt struct {
	For        token.Pos   // position of "for" keyword
	Key, Value Expr        // Key, Value may be nil
	TokPos     token.Pos   // position of Tok; invalid if Key == nil
	Tok        token.Token // ILLEGAL if Key == nil, ASSIGN, DEFINE
	Range      token.Pos   // position of "range" keyword
	X          Expr        // value to range over
	Body       *BlockStmt
}

A RangeStmt represents a for statement with a range clause.

(*RangeStmt) End

1
func (s *RangeStmt) End() token.Pos

(*RangeStmt) Pos

1
func (s *RangeStmt) Pos() token.Pos

type ReturnStmt

1
2
3
4
type ReturnStmt struct {
	Return  token.Pos // position of "return" keyword
	Results []Expr    // result expressions; or nil
}

A ReturnStmt node represents a return statement.

(*ReturnStmt) End

1
func (s *ReturnStmt) End() token.Pos

(*ReturnStmt) Pos

1
func (s *ReturnStmt) Pos() token.Pos

type Scope

1
2
3
4
type Scope struct {
	Outer   *Scope
	Objects map[string]*Object
}

A Scope maintains the set of named language entities declared in the scope and a link to the immediately surrounding (outer) scope.

func NewScope

1
func NewScope(outer *Scope) *Scope

NewScope creates a new scope nested in the outer scope.

(*Scope) Insert

1
func (s *Scope) Insert(obj *Object) (alt *Object)

Insert attempts to insert a named object obj into the scope s. If the scope already contains an object alt with the same name, Insert leaves the scope unchanged and returns alt. Otherwise it inserts obj and returns nil.

(*Scope) Lookup

1
func (s *Scope) Lookup(name string) *Object

Lookup returns the object with the given name if it is found in scope s, otherwise it returns nil. Outer scopes are ignored.

(*Scope) String

1
func (s *Scope) String() string

Debugging support

type SelectStmt

1
2
3
4
type SelectStmt struct {
	Select token.Pos  // position of "select" keyword
	Body   *BlockStmt // CommClauses only
}

A SelectStmt node represents a select statement.

(*SelectStmt) End

1
func (s *SelectStmt) End() token.Pos

(*SelectStmt) Pos

1
func (s *SelectStmt) Pos() token.Pos

type SelectorExpr

1
2
3
4
type SelectorExpr struct {
	X   Expr   // expression
	Sel *Ident // field selector
}

A SelectorExpr node represents an expression followed by a selector.

(*SelectorExpr) End

1
func (x *SelectorExpr) End() token.Pos

(*SelectorExpr) Pos

1
func (x *SelectorExpr) Pos() token.Pos

type SendStmt

1
2
3
4
5
type SendStmt struct {
	Chan  Expr
	Arrow token.Pos // position of "<-"
	Value Expr
}

A SendStmt node represents a send statement.

(*SendStmt) End

1
func (s *SendStmt) End() token.Pos

(*SendStmt) Pos

1
func (s *SendStmt) Pos() token.Pos

type SliceExpr

1
2
3
4
5
6
7
8
9
type SliceExpr struct {
	X      Expr      // expression
	Lbrack token.Pos // position of "["
	Low    Expr      // begin of slice range; or nil
	High   Expr      // end of slice range; or nil
	Max    Expr      // maximum capacity of slice; or nil
	Slice3 bool      // true if 3-index slice (2 colons present)
	Rbrack token.Pos // position of "]"
}

A SliceExpr node represents an expression followed by slice indices.

(*SliceExpr) End

1
func (x *SliceExpr) End() token.Pos

(*SliceExpr) Pos

1
func (x *SliceExpr) Pos() token.Pos

type Spec

1
2
3
4
type Spec interface {
	Node
	// contains filtered or unexported methods
}

The Spec type stands for any of *ImportSpec, *ValueSpec, and *TypeSpec.

type StarExpr

1
2
3
4
type StarExpr struct {
	Star token.Pos // position of "*"
	X    Expr      // operand
}

A StarExpr node represents an expression of the form “” Expression. Semantically it could be a unary “” expression, or a pointer type.

(*StarExpr) End

1
func (x *StarExpr) End() token.Pos

(*StarExpr) Pos

1
func (x *StarExpr) Pos() token.Pos

type Stmt

1
2
3
4
type Stmt interface {
	Node
	// contains filtered or unexported methods
}

All statement nodes implement the Stmt interface.

type StructType

1
2
3
4
5
type StructType struct {
	Struct     token.Pos  // position of "struct" keyword
	Fields     *FieldList // list of field declarations
	Incomplete bool       // true if (source) fields are missing in the Fields list
}

A StructType node represents a struct type.

(*StructType) End

1
func (x *StructType) End() token.Pos

(*StructType) Pos

1
func (x *StructType) Pos() token.Pos

type SwitchStmt

1
2
3
4
5
6
type SwitchStmt struct {
	Switch token.Pos  // position of "switch" keyword
	Init   Stmt       // initialization statement; or nil
	Tag    Expr       // tag expression; or nil
	Body   *BlockStmt // CaseClauses only
}

A SwitchStmt node represents an expression switch statement.

(*SwitchStmt) End

1
func (s *SwitchStmt) End() token.Pos

(*SwitchStmt) Pos

1
func (s *SwitchStmt) Pos() token.Pos

type TypeAssertExpr

1
2
3
4
5
6
type TypeAssertExpr struct {
	X      Expr      // expression
	Lparen token.Pos // position of "("
	Type   Expr      // asserted type; nil means type switch X.(type)
	Rparen token.Pos // position of ")"
}

A TypeAssertExpr node represents an expression followed by a type assertion.

(*TypeAssertExpr) End

1
func (x *TypeAssertExpr) End() token.Pos

(*TypeAssertExpr) Pos

1
func (x *TypeAssertExpr) Pos() token.Pos

type TypeSpec

1
2
3
4
5
6
7
8
type TypeSpec struct {
	Doc        *CommentGroup // associated documentation; or nil
	Name       *Ident        // type name
	TypeParams *FieldList    // type parameters; or nil
	Assign     token.Pos     // position of '=', if any
	Type       Expr          // *Ident, *ParenExpr, *SelectorExpr, *StarExpr, or any of the *XxxTypes
	Comment    *CommentGroup // line comments; or nil
}

A TypeSpec node represents a type declaration (TypeSpec production).

(*TypeSpec) End

1
func (s *TypeSpec) End() token.Pos

(*TypeSpec) Pos

1
func (s *TypeSpec) Pos() token.Pos

type TypeSwitchStmt

1
2
3
4
5
6
type TypeSwitchStmt struct {
	Switch token.Pos  // position of "switch" keyword
	Init   Stmt       // initialization statement; or nil
	Assign Stmt       // x := y.(type) or y.(type)
	Body   *BlockStmt // CaseClauses only
}

A TypeSwitchStmt node represents a type switch statement.

(*TypeSwitchStmt) End

1
func (s *TypeSwitchStmt) End() token.Pos

(*TypeSwitchStmt) Pos

1
func (s *TypeSwitchStmt) Pos() token.Pos

type UnaryExpr

1
2
3
4
5
type UnaryExpr struct {
	OpPos token.Pos   // position of Op
	Op    token.Token // operator
	X     Expr        // operand
}

A UnaryExpr node represents a unary expression. Unary “*” expressions are represented via StarExpr nodes.

(*UnaryExpr) End

1
func (x *UnaryExpr) End() token.Pos

(*UnaryExpr) Pos

1
func (x *UnaryExpr) Pos() token.Pos

type ValueSpec

1
2
3
4
5
6
7
type ValueSpec struct {
	Doc     *CommentGroup // associated documentation; or nil
	Names   []*Ident      // value names (len(Names) > 0)
	Type    Expr          // value type; or nil
	Values  []Expr        // initial values; or nil
	Comment *CommentGroup // line comments; or nil
}

A ValueSpec node represents a constant or variable declaration (ConstSpec or VarSpec production).

(*ValueSpec) End

1
func (s *ValueSpec) End() token.Pos

(*ValueSpec) Pos

1
func (s *ValueSpec) Pos() token.Pos

type Visitor

1
2
3
type Visitor interface {
	Visit(node Node) (w Visitor)
}

A Visitor’s Visit method is invoked for each node encountered by Walk. If the result visitor w is not nil, Walk visits each of the children of node with the visitor w, followed by a call of w.Visit(nil).