From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (wildebeest.demon.nl [212.238.236.112]) by sourceware.org (Postfix) with ESMTPS id 5DF4C3857C56 for ; Fri, 30 Jul 2021 01:03:23 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 5DF4C3857C56 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from reform (deer0x10.wildebeest.org [172.31.17.146]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 3A5CB30291A9; Fri, 30 Jul 2021 03:03:14 +0200 (CEST) Received: by reform (Postfix, from userid 1000) id C423A2E80768; Fri, 30 Jul 2021 03:03:13 +0200 (CEST) Date: Fri, 30 Jul 2021 03:03:13 +0200 From: Mark Wielaard To: Thomas Schwinge Cc: simplytheother@gmail.com, gcc-rust@gcc.gnu.org Subject: Re: [PATCH] Pass pratt parsed token to expr parser functions to fix expr locus Message-ID: References: <20210728221342.77649-1-mark@klomp.org> <01C0429E-15F9-45A7-B800-400EEBDF13CD@gmail.com> <9c9db19145176d664a6e944c1ff7108ce61215ae.camel@klomp.org> <87r1fh9mhx.fsf@euler.schwinge.homeip.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="QVBvzAsoyjMr2gbR" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87r1fh9mhx.fsf@euler.schwinge.homeip.net> X-Spam-Status: No, score=-11.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-rust@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: gcc-rust mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2021 01:03:26 -0000 --QVBvzAsoyjMr2gbR Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit Hi, On Thu, Jul 29, 2021 at 05:18:50PM +0200, Thomas Schwinge wrote: > On 2021-07-29T12:55:38+0200, Mark Wielaard wrote: > > On Thu, 2021-07-29 at 09:25 +0800, The Other via Gcc-rust wrote: > >> But isn’t it overkill to pass the token in instead of just the > >> location? You can avoid a fairly expensive shared_ptr copy by doing > >> so. > > > > I hadn't even noticed it was a smart pointer. At least the abstraction > > works transparently. > > Wouldn't 'const_TokenPtr &pratt_parsed_token' work, passing a C++ > reference? (Or am I missing some C++ "detail"; I haven't looked > carefully.) I think the issue is not the passing of the actual smart pointer, but the construction in the default case. When we define the method argument as const_TokenPtr pratt_parsed_token = nullptr we are actually constructing a shared_ptr wrapper around the nullptr. Of course in the case of passing a Location we also always have to construct an object. But the Location class is very simple, so hopefully it is cheaper to construct. > > But yes, things might be even simpler by passing the location directly. > > I'll try to rewrite the code tonight to pass a location and see how > > that looks. That variant is attached and can also be found here: https://code.wildebeest.org/git/user/mjw/gccrs/commit/?h=pass-pratt-parse-loc The original is also here: https://code.wildebeest.org/git/user/mjw/gccrs/commit/?h=pass-pratt-parse-token Hopefully one of the two is acceptable. If not please let me know how to rewrite it in a cheaper more idiomatic way. Thanks, Mark --QVBvzAsoyjMr2gbR Content-Type: text/x-diff; charset=utf-8 Content-Disposition: attachment; filename="0001-Pass-pratt-parsed-location-to-expr-parser-functions-.patch" Content-Transfer-Encoding: 8bit >From 2c51713eec25b38ab2274537103a391d89894dba Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Thu, 29 Jul 2021 00:00:55 +0200 Subject: [PATCH] Pass pratt parsed location to expr parser functions to fix expr locus MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The pratt parser skips the first token of an expression before invoking the actual expression parsing function. This makes getting the correct starting location of a pratt parsed expression hard. The "correction" of the location by subtracting an integer is often wrong (since there may be arbitrary whitespace or comments between tokens). Fix this by passing the location of the skipped token to the expression parsing functions (instead of just providing a pratt_parse boolean). Use this location to set the start of the expression. Before gccrs would generate the following error message: return.rs:3:22: error: cannot ‘break’ outside of a loop 3 | let x = 5 - break return (16 + 2); | ^~~~~~~~~~~~~~~~~ Now we get: return.rs:3:17: error: cannot ‘break’ outside of a loop 3 | let x = 5 - break return (16 + 2); | ^ --- gcc/rust/parse/rust-parse-impl.h | 177 +++++++++++-------------------- gcc/rust/parse/rust-parse.h | 63 ++++++----- 2 files changed, 95 insertions(+), 145 deletions(-) diff --git a/gcc/rust/parse/rust-parse-impl.h b/gcc/rust/parse/rust-parse-impl.h index 340fea70201..4b208f0da23 100644 --- a/gcc/rust/parse/rust-parse-impl.h +++ b/gcc/rust/parse/rust-parse-impl.h @@ -6580,7 +6580,7 @@ Parser::parse_path_expr_segment () template AST::QualifiedPathInExpression Parser::parse_qualified_path_in_expression ( - bool pratt_parse) + Location pratt_parsed_loc) { /* Note: the Rust grammar is defined in such a way that it is impossible to * determine whether a prospective qualified path is a @@ -6595,7 +6595,7 @@ Parser::parse_qualified_path_in_expression ( // parse the qualified path type (required) AST::QualifiedPathType qual_path_type - = parse_qualified_path_type (pratt_parse); + = parse_qualified_path_type (pratt_parsed_loc); if (qual_path_type.is_error ()) { // TODO: should this create a parse error? @@ -6661,12 +6661,13 @@ Parser::parse_qualified_path_in_expression ( // Parses the type syntactical construction at the start of a qualified path. template AST::QualifiedPathType -Parser::parse_qualified_path_type (bool pratt_parse) +Parser::parse_qualified_path_type ( + Location pratt_parsed_loc) { - Location locus = Linemap::unknown_location (); + Location locus = pratt_parsed_loc; /* TODO: should this actually be error? is there anywhere where this could be * valid? */ - if (!pratt_parse) + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); if (!skip_token (LEFT_ANGLE)) @@ -6675,11 +6676,6 @@ Parser::parse_qualified_path_type (bool pratt_parse) return AST::QualifiedPathType::create_error (); } } - else - { - // move back by 1 if pratt parsing due to skipping '<' - locus = lexer.peek_token ()->get_locus () - 1; - } // parse type (required) std::unique_ptr type = parse_type (); @@ -7305,10 +7301,10 @@ Parser::parse_expr_without_block (AST::AttrVec outer_attrs) template std::unique_ptr Parser::parse_block_expr (AST::AttrVec outer_attrs, - bool pratt_parse) + Location pratt_parsed_loc) { - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); if (!skip_token (LEFT_CURLY)) @@ -7317,10 +7313,6 @@ Parser::parse_block_expr (AST::AttrVec outer_attrs, return nullptr; } } - else - { - locus = lexer.peek_token ()->get_locus () - 1; - } AST::AttrVec inner_attrs = parse_inner_attributes (); @@ -7612,21 +7604,14 @@ Parser::parse_literal_expr (AST::AttrVec outer_attrs) template std::unique_ptr Parser::parse_return_expr (AST::AttrVec outer_attrs, - bool pratt_parse) + Location pratt_parsed_loc) { - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); - skip_token (RETURN_TOK); } - else - { - // minus 7 chars for 6 in return and a space - // or just TODO: pass in location data - locus = lexer.peek_token ()->get_locus () - 7; - } // parse expression to return, if it exists ParseRestrictions restrictions; @@ -7644,21 +7629,14 @@ Parser::parse_return_expr (AST::AttrVec outer_attrs, template std::unique_ptr Parser::parse_break_expr (AST::AttrVec outer_attrs, - bool pratt_parse) + Location pratt_parsed_loc) { - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); - skip_token (BREAK); } - else - { - // minus 6 chars for 5 in return and a space - // or just TODO: pass in location data - locus = lexer.peek_token ()->get_locus () - 6; - } // parse label (lifetime) if it exists - create dummy first AST::Lifetime label = AST::Lifetime::error (); @@ -7682,21 +7660,14 @@ Parser::parse_break_expr (AST::AttrVec outer_attrs, template std::unique_ptr Parser::parse_continue_expr (AST::AttrVec outer_attrs, - bool pratt_parse) + Location pratt_parsed_loc) { - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); - skip_token (CONTINUE); } - else - { - // minus 9 chars for 8 in return and a space - // or just TODO: pass in location data - locus = lexer.peek_token ()->get_locus () - 9; - } // parse label (lifetime) if it exists - create dummy first AST::Lifetime label = AST::Lifetime::error (); @@ -7740,11 +7711,11 @@ Parser::parse_loop_label () template std::unique_ptr Parser::parse_if_expr (AST::AttrVec outer_attrs, - bool pratt_parse) + Location pratt_parsed_loc) { // TODO: make having outer attributes an error? - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); if (!skip_token (IF)) @@ -7753,10 +7724,6 @@ Parser::parse_if_expr (AST::AttrVec outer_attrs, return nullptr; } } - else - { - locus = lexer.peek_token ()->get_locus () - 1; - } // detect accidental if let if (lexer.peek_token ()->get_id () == LET) @@ -7902,11 +7869,11 @@ Parser::parse_if_expr (AST::AttrVec outer_attrs, template std::unique_ptr Parser::parse_if_let_expr (AST::AttrVec outer_attrs, - bool pratt_parse) + Location pratt_parsed_loc) { // TODO: make having outer attributes an error? - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); if (!skip_token (IF)) @@ -7915,10 +7882,6 @@ Parser::parse_if_let_expr (AST::AttrVec outer_attrs, return nullptr; } } - else - { - locus = lexer.peek_token ()->get_locus () - 1; - } // detect accidental if expr parsed as if let expr if (lexer.peek_token ()->get_id () != LET) @@ -8094,10 +8057,10 @@ template std::unique_ptr Parser::parse_loop_expr (AST::AttrVec outer_attrs, AST::LoopLabel label, - bool pratt_parse) + Location pratt_parsed_loc) { - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { if (label.is_error ()) locus = lexer.peek_token ()->get_locus (); @@ -8112,9 +8075,7 @@ Parser::parse_loop_expr (AST::AttrVec outer_attrs, } else { - if (label.is_error ()) - locus = lexer.peek_token ()->get_locus () - 1; - else + if (!label.is_error ()) locus = label.get_locus (); } @@ -8140,10 +8101,10 @@ template std::unique_ptr Parser::parse_while_loop_expr (AST::AttrVec outer_attrs, AST::LoopLabel label, - bool pratt_parse) + Location pratt_parsed_loc) { - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { if (label.is_error ()) locus = lexer.peek_token ()->get_locus (); @@ -8158,9 +8119,7 @@ Parser::parse_while_loop_expr (AST::AttrVec outer_attrs, } else { - if (label.is_error ()) - locus = lexer.peek_token ()->get_locus () - 1; - else + if (!label.is_error ()) locus = label.get_locus (); } @@ -8417,21 +8376,14 @@ Parser::parse_labelled_loop_expr (AST::AttrVec outer_attrs) template std::unique_ptr Parser::parse_match_expr (AST::AttrVec outer_attrs, - bool pratt_parse) + Location pratt_parsed_loc) { - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); - skip_token (MATCH_TOK); } - else - { - // TODO: probably just pass in location data as param - // get current pos then move back 6 - 5 for match, 1 for space - locus = lexer.peek_token ()->get_locus () - 6; - } /* parse scrutinee expression, which is required (and HACK to prevent struct * expr) */ @@ -8705,16 +8657,14 @@ Parser::parse_async_block_expr (AST::AttrVec outer_attrs) template std::unique_ptr Parser::parse_unsafe_block_expr (AST::AttrVec outer_attrs, - bool pratt_parse) + Location pratt_parsed_loc) { - Location locus; - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); skip_token (UNSAFE); } - else - locus = lexer.peek_token ()->get_locus () - 1; // parse block expression (required) std::unique_ptr block_expr = parse_block_expr (); @@ -8738,19 +8688,14 @@ Parser::parse_unsafe_block_expr (AST::AttrVec outer_attrs, template std::unique_ptr Parser::parse_array_expr (AST::AttrVec outer_attrs, - bool pratt_parse) + Location pratt_parsed_loc) { - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); - skip_token (LEFT_SQUARE); } - else - { - locus = lexer.peek_token ()->get_locus () - 1; - } // parse optional inner attributes AST::AttrVec inner_attrs = parse_inner_attributes (); @@ -8927,20 +8872,15 @@ Parser::parse_closure_param () template std::unique_ptr Parser::parse_grouped_or_tuple_expr ( - AST::AttrVec outer_attrs, bool pratt_parse) + AST::AttrVec outer_attrs, Location pratt_parsed_loc) { // adjustment to allow Pratt parsing to reuse function without copy-paste - Location locus = Linemap::unknown_location (); - if (!pratt_parse) + Location locus = pratt_parsed_loc; + if (locus == Linemap::unknown_location ()) { locus = lexer.peek_token ()->get_locus (); - skip_token (LEFT_PAREN); } - else - { - locus = lexer.peek_token ()->get_locus () - 1; - } // parse optional inner attributes AST::AttrVec inner_attrs = parse_inner_attributes (); @@ -12535,7 +12475,7 @@ Parser::null_denotation (const_TokenPtr tok, // qualified path // HACK: add outer attrs to path AST::QualifiedPathInExpression path - = parse_qualified_path_in_expression (true); + = parse_qualified_path_in_expression (tok->get_locus ()); path.set_outer_attrs (std::move (outer_attrs)); return std::unique_ptr ( new AST::QualifiedPathInExpression (std::move (path))); @@ -12578,7 +12518,8 @@ Parser::null_denotation (const_TokenPtr tok, new AST::LiteralExpr ("false", AST::Literal::BOOL, tok->get_type_hint (), {}, tok->get_locus ())); case LEFT_PAREN: - return parse_grouped_or_tuple_expr (std::move (outer_attrs), true); + return parse_grouped_or_tuple_expr (std::move (outer_attrs), + tok->get_locus ()); /*case PLUS: { // unary plus operator // invoke parse_expr recursively with appropriate priority, etc. for @@ -12810,41 +12751,43 @@ Parser::null_denotation (const_TokenPtr tok, return parse_range_to_inclusive_expr (tok, std::move (outer_attrs)); case RETURN_TOK: // FIXME: is this really a null denotation expression? - return parse_return_expr (std::move (outer_attrs), true); + return parse_return_expr (std::move (outer_attrs), tok->get_locus ()); case BREAK: // FIXME: is this really a null denotation expression? - return parse_break_expr (std::move (outer_attrs), true); + return parse_break_expr (std::move (outer_attrs), tok->get_locus ()); case CONTINUE: - return parse_continue_expr (std::move (outer_attrs), true); + return parse_continue_expr (std::move (outer_attrs), tok->get_locus ()); case LEFT_CURLY: // ok - this is an expression with block for once. - return parse_block_expr (std::move (outer_attrs), true); + return parse_block_expr (std::move (outer_attrs), tok->get_locus ()); case IF: // if or if let, so more lookahead to find out if (lexer.peek_token (1)->get_id () == LET) { // if let expr - return parse_if_let_expr (std::move (outer_attrs), true); + return parse_if_let_expr (std::move (outer_attrs), tok->get_locus ()); } else { // if expr - return parse_if_expr (std::move (outer_attrs), true); + return parse_if_expr (std::move (outer_attrs), tok->get_locus ()); } case LOOP: return parse_loop_expr (std::move (outer_attrs), AST::LoopLabel::error (), - true); + tok->get_locus ()); case WHILE: return parse_while_loop_expr (std::move (outer_attrs), - AST::LoopLabel::error (), true); + AST::LoopLabel::error (), + tok->get_locus ()); case MATCH_TOK: // also an expression with block - return parse_match_expr (std::move (outer_attrs), true); + return parse_match_expr (std::move (outer_attrs), tok->get_locus ()); case LEFT_SQUARE: // array definition expr (not indexing) - return parse_array_expr (std::move (outer_attrs), true); + return parse_array_expr (std::move (outer_attrs), tok->get_locus ()); case UNSAFE: - return parse_unsafe_block_expr (std::move (outer_attrs), true); + return parse_unsafe_block_expr (std::move (outer_attrs), + tok->get_locus ()); default: if (!restrictions.expr_can_be_null) add_error (Error (tok->get_locus (), diff --git a/gcc/rust/parse/rust-parse.h b/gcc/rust/parse/rust-parse.h index 1c7bd781b3f..ec68abf8995 100644 --- a/gcc/rust/parse/rust-parse.h +++ b/gcc/rust/parse/rust-parse.h @@ -121,8 +121,11 @@ private: AST::PathInExpression parse_path_in_expression (); AST::PathExprSegment parse_path_expr_segment (); AST::QualifiedPathInExpression - parse_qualified_path_in_expression (bool pratt_parse = false); - AST::QualifiedPathType parse_qualified_path_type (bool pratt_parse = false); + parse_qualified_path_in_expression (Location pratt_parsed_loc + = Linemap::unknown_location ()); + AST::QualifiedPathType + parse_qualified_path_type (Location pratt_parsed_loc + = Linemap::unknown_location ()); AST::QualifiedPathInType parse_qualified_path_in_type (); // Token tree or macro related @@ -470,32 +473,33 @@ private: parse_expr_with_block (AST::AttrVec outer_attrs); std::unique_ptr parse_expr_without_block (AST::AttrVec outer_attrs = AST::AttrVec ()); - std::unique_ptr parse_block_expr (AST::AttrVec outer_attrs - = AST::AttrVec (), - bool pratt_parse = false); - std::unique_ptr parse_if_expr (AST::AttrVec outer_attrs - = AST::AttrVec (), - bool pratt_parse = false); - std::unique_ptr parse_if_let_expr (AST::AttrVec outer_attrs - = AST::AttrVec (), - bool pratt_parse = false); + std::unique_ptr + parse_block_expr (AST::AttrVec outer_attrs = AST::AttrVec (), + Location pratt_parsed_loc = Linemap::unknown_location ()); + std::unique_ptr + parse_if_expr (AST::AttrVec outer_attrs = AST::AttrVec (), + Location pratt_parsed_loc = Linemap::unknown_location ()); + std::unique_ptr + parse_if_let_expr (AST::AttrVec outer_attrs = AST::AttrVec (), + Location pratt_parsed_loc = Linemap::unknown_location ()); std::unique_ptr parse_loop_expr (AST::AttrVec outer_attrs = AST::AttrVec (), AST::LoopLabel label = AST::LoopLabel::error (), - bool pratt_parse = false); + Location pratt_parsed_loc = Linemap::unknown_location ()); std::unique_ptr parse_while_loop_expr (AST::AttrVec outer_attrs = AST::AttrVec (), AST::LoopLabel label = AST::LoopLabel::error (), - bool pratt_parse = false); + Location pratt_parsed_loc + = Linemap::unknown_location ()); std::unique_ptr parse_while_let_loop_expr (AST::AttrVec outer_attrs = AST::AttrVec (), AST::LoopLabel label = AST::LoopLabel::error ()); std::unique_ptr parse_for_loop_expr (AST::AttrVec outer_attrs = AST::AttrVec (), AST::LoopLabel label = AST::LoopLabel::error ()); - std::unique_ptr parse_match_expr (AST::AttrVec outer_attrs - = AST::AttrVec (), - bool pratt_parse = false); + std::unique_ptr + parse_match_expr (AST::AttrVec outer_attrs = AST::AttrVec (), + Location pratt_parsed_loc = Linemap::unknown_location ()); AST::MatchArm parse_match_arm (); std::vector > parse_match_arm_patterns (TokenId end_token_id); @@ -511,24 +515,27 @@ private: AST::ClosureParam parse_closure_param (); std::unique_ptr parse_literal_expr (AST::AttrVec outer_attrs = AST::AttrVec ()); - std::unique_ptr parse_return_expr (AST::AttrVec outer_attrs - = AST::AttrVec (), - bool pratt_parse = false); - std::unique_ptr parse_break_expr (AST::AttrVec outer_attrs - = AST::AttrVec (), - bool pratt_parse = false); + std::unique_ptr + parse_return_expr (AST::AttrVec outer_attrs = AST::AttrVec (), + Location pratt_parsed_loc = Linemap::unknown_location ()); + std::unique_ptr + parse_break_expr (AST::AttrVec outer_attrs = AST::AttrVec (), + Location pratt_parsed_loc = Linemap::unknown_location ()); std::unique_ptr parse_continue_expr (AST::AttrVec outer_attrs = AST::AttrVec (), - bool pratt_parse = false); + Location pratt_parsed_loc + = Linemap::unknown_location ()); std::unique_ptr parse_unsafe_block_expr (AST::AttrVec outer_attrs = AST::AttrVec (), - bool pratt_parse = false); - std::unique_ptr parse_array_expr (AST::AttrVec outer_attrs - = AST::AttrVec (), - bool pratt_parse = false); + Location pratt_parsed_loc + = Linemap::unknown_location ()); + std::unique_ptr + parse_array_expr (AST::AttrVec outer_attrs = AST::AttrVec (), + Location pratt_parsed_loc = Linemap::unknown_location ()); std::unique_ptr parse_grouped_or_tuple_expr (AST::AttrVec outer_attrs = AST::AttrVec (), - bool pratt_parse = false); + Location pratt_parsed_loc + = Linemap::unknown_location ()); std::unique_ptr parse_struct_expr_field (); bool will_be_expr_with_block (); -- 2.32.0 --QVBvzAsoyjMr2gbR--