type go/ast.ExprStmt

17 uses

	go/ast (current package)
		ast.go#L624: 	ExprStmt struct {
		ast.go#L759: func (s *ExprStmt) Pos() token.Pos       { return s.X.Pos() }
		ast.go#L786: func (s *ExprStmt) End() token.Pos    { return s.X.End() }
		ast.go#L846: func (*ExprStmt) stmtNode()       {}
		walk.go#L195: 	case *ExprStmt:

	go/parser
		parser.go#L1744: 	return &ast.ExprStmt{X: x[0]}, false
		parser.go#L1827: 	if es, isExpr := s.(*ast.ExprStmt); isExpr {
		parser.go#L1980: 	case *ast.ExprStmt:
		parser.go#L2101: 				comm = &ast.ExprStmt{X: lhs[0]}

	go/printer
		nodes.go#L1263: 	case *ast.ExprStmt:

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L1225: func encode_ast_ExprStmt(e *codec.Encoder, x *ast.ExprStmt) {
		encode_ast.gen.go#L1236: func decode_ast_ExprStmt(d *codec.Decoder, p **ast.ExprStmt) {
		encode_ast.gen.go#L1242: 		*p = ref.(*ast.ExprStmt)
		encode_ast.gen.go#L1245: 	var x ast.ExprStmt
		encode_ast.gen.go#L1263: 	codec.Register(&ast.ExprStmt{},
		encode_ast.gen.go#L1264: 		func(e *codec.Encoder, x interface{}) { encode_ast_ExprStmt(e, x.(*ast.ExprStmt)) },
		encode_ast.gen.go#L1266: 			var x *ast.ExprStmt