Type Alias rustpython_ast::located::ExprBinOp
source · pub type ExprBinOp = ExprBinOp<SourceRange>;
Aliased Type§
struct ExprBinOp {
pub range: SourceRange,
pub left: Box<Expr<SourceRange>>,
pub op: Operator,
pub right: Box<Expr<SourceRange>>,
}
Fields§
§range: SourceRange
§left: Box<Expr<SourceRange>>
§op: Operator
§right: Box<Expr<SourceRange>>