Add BinOp and UnOp to syn::ast::prelude

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2020-05-27 15:15:46 -04:00
parent 65b8d3af58
commit b6375a81ff

View File

@@ -6,6 +6,8 @@ pub mod prelude {
AssignStmt, BaseExpr, BaseExprKind, BinExpr, Expr, FunCallExpr, FunExpr, IndexExpr, Stmt, AssignStmt, BaseExpr, BaseExprKind, BinExpr, Expr, FunCallExpr, FunExpr, IndexExpr, Stmt,
UnExpr, UnExpr,
}; };
pub use crate::syn::op::{BinOp, UnOp};
} }
#[derive(Debug, Clone, PartialEq, Eq)] #[derive(Debug, Clone, PartialEq, Eq)]