Returns the expression contained in this parsed output.
(&self)
| 538 | impl Parsed<ModExpression> { |
| 539 | /// Returns the expression contained in this parsed output. |
| 540 | pub fn expr(&self) -> &Expr { |
| 541 | &self.syntax.body |
| 542 | } |
| 543 | |
| 544 | /// Returns a mutable reference to the expression contained in this parsed output. |
| 545 | fn expr_mut(&mut self) -> &mut Expr { |
no outgoing calls