| 494 | // https://docs.python.org/3/library/ast.html#ast.BoolOp |
| 495 | #[derive(Debug, Clone)] |
| 496 | pub struct BoolOperation { |
| 497 | pub node: Node, |
| 498 | pub op: BooleanOperator, |
| 499 | pub values: Vec<Expression>, |
| 500 | } |
| 501 | |
| 502 | #[derive(Debug, Clone)] |
| 503 | pub enum BooleanOperator { |
nothing calls this directly
no outgoing calls
no test coverage detected