type go/ast.DeferStmt
14 uses
go/ast (current package)
ast.go#L659: DeferStmt struct {
ast.go#L764: func (s *DeferStmt) Pos() token.Pos { return s.Defer }
ast.go#L793: func (s *DeferStmt) End() token.Pos { return s.Call.End() }
ast.go#L851: func (*DeferStmt) stmtNode() {}
walk.go#L212: case *DeferStmt:
go/parser
parser.go#L1786: return &ast.DeferStmt{Defer: pos, Call: call}
go/printer
nodes.go#L1291: case *ast.DeferStmt:
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L1060: func encode_ast_DeferStmt(e *codec.Encoder, x *ast.DeferStmt) {
encode_ast.gen.go#L1075: func decode_ast_DeferStmt(d *codec.Decoder, p **ast.DeferStmt) {
encode_ast.gen.go#L1081: *p = ref.(*ast.DeferStmt)
encode_ast.gen.go#L1084: var x ast.DeferStmt
encode_ast.gen.go#L1104: codec.Register(&ast.DeferStmt{},
encode_ast.gen.go#L1105: func(e *codec.Encoder, x interface{}) { encode_ast_DeferStmt(e, x.(*ast.DeferStmt)) },
encode_ast.gen.go#L1107: var x *ast.DeferStmt
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |