diff options
Diffstat (limited to 'gcc/rust/ast')
-rw-r--r-- | gcc/rust/ast/rust-ast-dump.cc | 8 | ||||
-rw-r--r-- | gcc/rust/ast/rust-ast-dump.h | 2 | ||||
-rw-r--r-- | gcc/rust/ast/rust-ast-full-decls.h | 2 | ||||
-rw-r--r-- | gcc/rust/ast/rust-ast-tokenstream.cc | 18 | ||||
-rw-r--r-- | gcc/rust/ast/rust-ast-tokenstream.h | 2 | ||||
-rw-r--r-- | gcc/rust/ast/rust-ast-visitor.h | 2 | ||||
-rw-r--r-- | gcc/rust/ast/rust-ast.cc | 34 | ||||
-rw-r--r-- | gcc/rust/ast/rust-expr.h | 130 |
8 files changed, 7 insertions, 191 deletions
diff --git a/gcc/rust/ast/rust-ast-dump.cc b/gcc/rust/ast/rust-ast-dump.cc index 12cbfac..ce934a1 100644 --- a/gcc/rust/ast/rust-ast-dump.cc +++ b/gcc/rust/ast/rust-ast-dump.cc @@ -945,14 +945,6 @@ Dump::visit (IfLetExprConseqElse &) {} void -Dump::visit (IfLetExprConseqIf &) -{} - -void -Dump::visit (IfLetExprConseqIfLet &) -{} - -void Dump::visit (MatchExpr &) {} diff --git a/gcc/rust/ast/rust-ast-dump.h b/gcc/rust/ast/rust-ast-dump.h index a48d4761..b8b5e96 100644 --- a/gcc/rust/ast/rust-ast-dump.h +++ b/gcc/rust/ast/rust-ast-dump.h @@ -186,8 +186,6 @@ private: void visit (IfExprConseqElse &expr); void visit (IfLetExpr &expr); void visit (IfLetExprConseqElse &expr); - void visit (IfLetExprConseqIf &expr); - void visit (IfLetExprConseqIfLet &expr); void visit (MatchExpr &expr); void visit (AwaitExpr &expr); void visit (AsyncBlockExpr &expr); diff --git a/gcc/rust/ast/rust-ast-full-decls.h b/gcc/rust/ast/rust-ast-full-decls.h index 94691f9..bd59c52 100644 --- a/gcc/rust/ast/rust-ast-full-decls.h +++ b/gcc/rust/ast/rust-ast-full-decls.h @@ -137,8 +137,6 @@ class IfExpr; class IfExprConseqElse; class IfLetExpr; class IfLetExprConseqElse; -class IfLetExprConseqIf; -class IfLetExprConseqIfLet; struct MatchArm; // class MatchCase; // class MatchCaseBlockExpr; diff --git a/gcc/rust/ast/rust-ast-tokenstream.cc b/gcc/rust/ast/rust-ast-tokenstream.cc index cdfd870..78b5385 100644 --- a/gcc/rust/ast/rust-ast-tokenstream.cc +++ b/gcc/rust/ast/rust-ast-tokenstream.cc @@ -1449,24 +1449,6 @@ TokenStream::visit (IfLetExprConseqElse &expr) } void -TokenStream::visit (IfLetExprConseqIf &expr) -{ - visit (static_cast<IfLetExpr &> (expr)); - indentation (); - tokens.push_back (Rust::Token::make (ELSE, expr.get_locus ())); - visit (expr.get_conseq_if_expr ()); -} - -void -TokenStream::visit (IfLetExprConseqIfLet &expr) -{ - visit (static_cast<IfLetExpr &> (expr)); - indentation (); - tokens.push_back (Rust::Token::make (ELSE, expr.get_locus ())); - visit (expr.get_conseq_if_let_expr ()); -} - -void TokenStream::visit (MatchArm &arm) { visit_items_as_lines (arm.get_outer_attrs ()); diff --git a/gcc/rust/ast/rust-ast-tokenstream.h b/gcc/rust/ast/rust-ast-tokenstream.h index 83fdece..24be831 100644 --- a/gcc/rust/ast/rust-ast-tokenstream.h +++ b/gcc/rust/ast/rust-ast-tokenstream.h @@ -200,8 +200,6 @@ private: void visit (IfExprConseqElse &expr); void visit (IfLetExpr &expr); void visit (IfLetExprConseqElse &expr); - void visit (IfLetExprConseqIf &expr); - void visit (IfLetExprConseqIfLet &expr); void visit (MatchArm &arm); void visit (MatchCase &arm); void visit (MatchExpr &expr); diff --git a/gcc/rust/ast/rust-ast-visitor.h b/gcc/rust/ast/rust-ast-visitor.h index 621f09e..f11c9c3 100644 --- a/gcc/rust/ast/rust-ast-visitor.h +++ b/gcc/rust/ast/rust-ast-visitor.h @@ -117,8 +117,6 @@ public: virtual void visit (IfExprConseqElse &expr) = 0; virtual void visit (IfLetExpr &expr) = 0; virtual void visit (IfLetExprConseqElse &expr) = 0; - virtual void visit (IfLetExprConseqIf &expr) = 0; - virtual void visit (IfLetExprConseqIfLet &expr) = 0; // virtual void visit(MatchCase& match_case) = 0; // virtual void visit (MatchCaseBlockExpr &match_case) = 0; // virtual void visit (MatchCaseExpr &match_case) = 0; diff --git a/gcc/rust/ast/rust-ast.cc b/gcc/rust/ast/rust-ast.cc index dbbeda3..a664a31 100644 --- a/gcc/rust/ast/rust-ast.cc +++ b/gcc/rust/ast/rust-ast.cc @@ -1673,27 +1673,7 @@ IfLetExprConseqElse::as_string () const { std::string str = IfLetExpr::as_string (); - str += "\n Else block expr: " + else_block->as_string (); - - return str; -} - -std::string -IfLetExprConseqIf::as_string () const -{ - std::string str = IfLetExpr::as_string (); - - str += "\n Else if expr: \n " + if_expr->as_string (); - - return str; -} - -std::string -IfLetExprConseqIfLet::as_string () const -{ - std::string str = IfLetExpr::as_string (); - - str += "\n Else if let expr: \n " + if_let_expr->as_string (); + str += "\n Else expr: " + else_block->as_string (); return str; } @@ -4568,18 +4548,6 @@ IfLetExprConseqElse::accept_vis (ASTVisitor &vis) } void -IfLetExprConseqIf::accept_vis (ASTVisitor &vis) -{ - vis.visit (*this); -} - -void -IfLetExprConseqIfLet::accept_vis (ASTVisitor &vis) -{ - vis.visit (*this); -} - -void MatchExpr::accept_vis (ASTVisitor &vis) { vis.visit (*this); diff --git a/gcc/rust/ast/rust-expr.h b/gcc/rust/ast/rust-expr.h index f91d9e9..abe6e03 100644 --- a/gcc/rust/ast/rust-expr.h +++ b/gcc/rust/ast/rust-expr.h @@ -3945,7 +3945,7 @@ protected: * end */ class IfLetExprConseqElse : public IfLetExpr { - std::unique_ptr<BlockExpr> else_block; + std::unique_ptr<ExprWithBlock> else_block; public: std::string as_string () const override; @@ -3953,8 +3953,8 @@ public: IfLetExprConseqElse ( std::vector<std::unique_ptr<Pattern> > match_arm_patterns, std::unique_ptr<Expr> value, std::unique_ptr<BlockExpr> if_block, - std::unique_ptr<BlockExpr> else_block, std::vector<Attribute> outer_attrs, - Location locus) + std::unique_ptr<ExprWithBlock> else_block, + std::vector<Attribute> outer_attrs, Location locus) : IfLetExpr (std::move (match_arm_patterns), std::move (value), std::move (if_block), std::move (outer_attrs), locus), else_block (std::move (else_block)) @@ -3963,7 +3963,7 @@ public: // copy constructor with clone IfLetExprConseqElse (IfLetExprConseqElse const &other) - : IfLetExpr (other), else_block (other.else_block->clone_block_expr ()) + : IfLetExpr (other), else_block (other.else_block->clone_expr_with_block ()) {} // overload assignment operator to clone @@ -3973,7 +3973,7 @@ public: // match_arm_patterns = other.match_arm_patterns; // value = other.value->clone_expr(); // if_block = other.if_block->clone_block_expr(); - else_block = other.else_block->clone_block_expr (); + else_block = other.else_block->clone_expr_with_block (); // outer_attrs = other.outer_attrs; return *this; @@ -3986,7 +3986,7 @@ public: void accept_vis (ASTVisitor &vis) override; // TODO: is this better? Or is a "vis_block" better? - std::unique_ptr<BlockExpr> &get_else_block () + std::unique_ptr<ExprWithBlock> &get_else_block () { rust_assert (else_block != nullptr); return else_block; @@ -4001,124 +4001,6 @@ protected: } }; -/* AST node representing "if let" expression with an "else if" expression at the - * end */ -class IfLetExprConseqIf : public IfLetExpr -{ - std::unique_ptr<IfExpr> if_expr; - -public: - std::string as_string () const override; - - IfLetExprConseqIf (std::vector<std::unique_ptr<Pattern> > match_arm_patterns, - std::unique_ptr<Expr> value, - std::unique_ptr<BlockExpr> if_block, - std::unique_ptr<IfExpr> if_expr, - std::vector<Attribute> outer_attrs, Location locus) - : IfLetExpr (std::move (match_arm_patterns), std::move (value), - std::move (if_block), std::move (outer_attrs), locus), - if_expr (std::move (if_expr)) - {} - // again, outer attributes not allowed - - // copy constructor with clone - IfLetExprConseqIf (IfLetExprConseqIf const &other) - : IfLetExpr (other), if_expr (other.if_expr->clone_if_expr ()) - {} - - // overload assignment operator to clone - IfLetExprConseqIf &operator= (IfLetExprConseqIf const &other) - { - IfLetExpr::operator= (other); - // match_arm_patterns = other.match_arm_patterns; - // value = other.value->clone_expr(); - // if_block = other.if_block->clone_block_expr(); - if_expr = other.if_expr->clone_if_expr (); - - return *this; - } - - // move constructors - IfLetExprConseqIf (IfLetExprConseqIf &&other) = default; - IfLetExprConseqIf &operator= (IfLetExprConseqIf &&other) = default; - - void accept_vis (ASTVisitor &vis) override; - - // TODO: is this better? Or is a "vis_block" better? - std::unique_ptr<IfExpr> &get_conseq_if_expr () - { - rust_assert (if_expr != nullptr); - return if_expr; - } - -protected: - /* Use covariance to implement clone function as returning this object rather - * than base */ - IfLetExprConseqIf *clone_if_let_expr_impl () const override - { - return new IfLetExprConseqIf (*this); - } -}; - -/* AST node representing "if let" expression with an "else if let" expression at - * the end */ -class IfLetExprConseqIfLet : public IfLetExpr -{ - std::unique_ptr<IfLetExpr> if_let_expr; - -public: - std::string as_string () const override; - - IfLetExprConseqIfLet ( - std::vector<std::unique_ptr<Pattern> > match_arm_patterns, - std::unique_ptr<Expr> value, std::unique_ptr<BlockExpr> if_block, - std::unique_ptr<IfLetExpr> if_let_expr, std::vector<Attribute> outer_attrs, - Location locus) - : IfLetExpr (std::move (match_arm_patterns), std::move (value), - std::move (if_block), std::move (outer_attrs), locus), - if_let_expr (std::move (if_let_expr)) - {} - // outer attributes not allowed - - // copy constructor with clone - IfLetExprConseqIfLet (IfLetExprConseqIfLet const &other) - : IfLetExpr (other), if_let_expr (other.if_let_expr->clone_if_let_expr ()) - {} - - // overload assignment operator to clone - IfLetExprConseqIfLet &operator= (IfLetExprConseqIfLet const &other) - { - IfLetExpr::operator= (other); - // match_arm_patterns = other.match_arm_patterns; - // value = other.value->clone_expr(); - // if_block = other.if_block->clone_block_expr(); - if_let_expr = other.if_let_expr->clone_if_let_expr (); - - return *this; - } - - // move constructors - IfLetExprConseqIfLet (IfLetExprConseqIfLet &&other) = default; - IfLetExprConseqIfLet &operator= (IfLetExprConseqIfLet &&other) = default; - - void accept_vis (ASTVisitor &vis) override; - - // TODO: is this better? Or is a "vis_block" better? - std::unique_ptr<IfLetExpr> &get_conseq_if_let_expr () - { - rust_assert (if_let_expr != nullptr); - return if_let_expr; - } - -protected: - /* Use covariance to implement clone function as returning this object rather - * than base */ - IfLetExprConseqIfLet *clone_if_let_expr_impl () const override - { - return new IfLetExprConseqIfLet (*this); - } -}; - // Match arm expression struct MatchArm { |