type go/ast.GoStmt

14 uses

	go/ast (current package)
		ast.go#L653: 	GoStmt struct {
		ast.go#L763: func (s *GoStmt) Pos() token.Pos         { return s.Go }
		ast.go#L792: func (s *GoStmt) End() token.Pos     { return s.Call.End() }
		ast.go#L850: func (*GoStmt) stmtNode()         {}
		walk.go#L209: 	case *GoStmt:

	go/parser
		parser.go#L1771: 	return &ast.GoStmt{Go: pos, Call: call}

	go/printer
		nodes.go#L1287: 	case *ast.GoStmt:

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L1749: func encode_ast_GoStmt(e *codec.Encoder, x *ast.GoStmt) {
		encode_ast.gen.go#L1764: func decode_ast_GoStmt(d *codec.Decoder, p **ast.GoStmt) {
		encode_ast.gen.go#L1770: 		*p = ref.(*ast.GoStmt)
		encode_ast.gen.go#L1773: 	var x ast.GoStmt
		encode_ast.gen.go#L1793: 	codec.Register(&ast.GoStmt{},
		encode_ast.gen.go#L1794: 		func(e *codec.Encoder, x interface{}) { encode_ast_GoStmt(e, x.(*ast.GoStmt)) },
		encode_ast.gen.go#L1796: 			var x *ast.GoStmt