MCPcopy Create free account
hub / github.com/Glyphack/enderpy / BinOp

Class BinOp

parser/src/ast.rs:526–531  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

524// https://docs.python.org/3/library/ast.html#ast.BinOp
525#[derive(Debug, Clone)]
526pub struct BinOp {
527 pub node: Node,
528 pub op: BinaryOperator,
529 pub left: Expression,
530 pub right: Expression,
531}
532
533#[derive(Debug, Clone, PartialEq)]
534pub enum BinaryOperator {

Callers 6

parse_or_exprMethod · 0.85
parse_xor_exprMethod · 0.85
parse_and_exprMethod · 0.85
parse_shift_exprMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected