MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / BinaryExpression

Class BinaryExpression

graphlite/src/ast/ast.rs:521–526  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

519/// Binary expression: left op right
520#[derive(Debug, Clone, Serialize, Deserialize)]
521pub struct BinaryExpression {
522 pub left: Box<Expression>,
523 pub operator: Operator,
524 pub right: Box<Expression>,
525 pub location: Location,
526}
527
528/// Unary expression: op expression
529#[derive(Debug, Clone, Serialize, Deserialize)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected