Skip to main content

Type Alias: BinaryOp

type BinaryOp =
| "or"
| "and"
| "="
| "!="
| "<"
| "<="
| ">"
| ">="
| "+"
| "-"
| "*"
| "/"
| "mod";

Defined in: packages/core/src/expr/ast.ts:9

REL v1 AST, evaluation context and function-registry contracts. Normative: docs/05-logic-and-expressions.md §3/§4.1, docs/17-api-reference.md §2.4.

Nodes are plain frozen JSON objects (serialisable — the builder stores them and the CLI diffs them). k is the node kind; o is the source offset.