Files
rust/compiler
Nicholas Nethercote 2ef0479568 Simplify attribute handling in parse_bottom_expr.
`Parser::parse_bottom_expr` currently constructs an empty `attrs` and
then passes it to a large number of other functions. This makes the code
harder to read than it should be, because it's not clear that many
`attrs` arguments are always empty.

This commit removes `attrs` and the passing, simplifying a lot of
functions. The commit also renames `Parser::mk_expr` (which takes an
`attrs` argument) as `mk_expr_with_attrs`, and introduces a new
`mk_expr` which creates an expression with no attributes, which is the
more common case.
2022-08-15 13:29:28 +10:00
..
2022-08-10 17:22:58 +02:00
2022-06-03 17:16:41 -04:00
2022-08-09 12:54:32 +02:00
2022-08-01 08:53:04 +10:00
2022-05-26 13:14:24 +02:00
2022-06-02 10:29:00 +00:00