type go/ast.ExprStmt

15 uses

	go/ast (current package)
		ast.go#L640: 	ExprStmt struct {
		ast.go#L775: func (s *ExprStmt) Pos() token.Pos       { return s.X.Pos() }
		ast.go#L802: func (s *ExprStmt) End() token.Pos    { return s.X.End() }
		ast.go#L862: func (*ExprStmt) stmtNode()       {}
		walk.go#L206: 	case *ExprStmt:

	go/parser
		parser.go#L1963: 	return &ast.ExprStmt{X: x[0]}, false
		parser.go#L2051: 	if es, isExpr := s.(*ast.ExprStmt); isExpr {
		parser.go#L2200: 	case *ast.ExprStmt:
		parser.go#L2316: 				comm = &ast.ExprStmt{X: lhs[0]}

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

	go/types
		return.go#L30: 	case *ast.ExprStmt:
		return.go#L115: 	case *ast.BadStmt, *ast.DeclStmt, *ast.EmptyStmt, *ast.ExprStmt,
		stmt.go#L390: 	case *ast.ExprStmt:
		stmt.go#L647: 		case *ast.ExprStmt:
		stmt.go#L773: 			case *ast.ExprStmt: