2014-04-27 22:05:41 -04:00
|
|
|
//! Routines the parser uses to classify AST nodes
|
|
|
|
|
|
|
|
|
|
// Predicates on exprs and stmts that the pretty-printer and parser use
|
2012-05-22 10:54:12 -07:00
|
|
|
|
2019-02-07 02:33:01 +09:00
|
|
|
use crate::ast;
|
2012-04-17 22:02:00 -07:00
|
|
|
|
2014-06-09 13:12:30 -07:00
|
|
|
/// Does this expression require a semicolon to be treated
|
|
|
|
|
/// as a statement? The negation of this: 'can this expression
|
|
|
|
|
/// be used as a statement without a semicolon' -- is used
|
|
|
|
|
/// as an early-bail-out in the parser so that, for instance,
|
|
|
|
|
/// if true {...} else {...}
|
|
|
|
|
/// |x| 5
|
|
|
|
|
/// isn't parsed as (if true {...} else {...} | x) | 5
|
2014-09-13 19:06:01 +03:00
|
|
|
pub fn expr_requires_semi_to_be_stmt(e: &ast::Expr) -> bool {
|
2020-12-24 02:55:21 +01:00
|
|
|
!matches!(
|
|
|
|
|
e.kind,
|
2019-12-22 17:42:04 -05:00
|
|
|
ast::ExprKind::If(..)
|
2020-12-24 02:55:21 +01:00
|
|
|
| ast::ExprKind::Match(..)
|
|
|
|
|
| ast::ExprKind::Block(..)
|
|
|
|
|
| ast::ExprKind::While(..)
|
|
|
|
|
| ast::ExprKind::Loop(..)
|
|
|
|
|
| ast::ExprKind::ForLoop(..)
|
|
|
|
|
| ast::ExprKind::TryBlock(..)
|
|
|
|
|
)
|
2012-04-17 22:02:00 -07:00
|
|
|
}
|