type go/ast.ExprStmt

15 uses

	go/ast (current package)
		ast.go#L645: 	ExprStmt struct {
		ast.go#L781: func (s *ExprStmt) Pos() token.Pos       { return s.X.Pos() }
		ast.go#L808: func (s *ExprStmt) End() token.Pos    { return s.X.End() }
		ast.go#L867: func (*ExprStmt) stmtNode()       {}
		walk.go#L182: 	case *ExprStmt:

	go/parser
		parser.go#L1981: 	return &ast.ExprStmt{X: x[0]}, false
		parser.go#L2065: 	if es, isExpr := s.(*ast.ExprStmt); isExpr {
		parser.go#L2198: 	case *ast.ExprStmt:
		parser.go#L2310: 				comm = &ast.ExprStmt{X: lhs[0]}

	go/printer
		nodes.go#L1380: 	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#L438: 	case *ast.ExprStmt:
		stmt.go#L701: 		case *ast.ExprStmt:
		stmt.go#L817: 			case *ast.ExprStmt: