Skip to main content

BinaryExpression

@lowcode/expression-parser


Interface: BinaryExpression

Defined in: ast/nodes.ts:56

Бинарная операция: a + b, a * b, a == b

Extends

Properties

end?

optional end: number

Defined in: ast/nodes.ts:8

Inherited from

BaseExpression.end


left

left: ExpressionNode

Defined in: ast/nodes.ts:59


operator

operator: string

Defined in: ast/nodes.ts:58


right: ExpressionNode

Defined in: ast/nodes.ts:60


start?

optional start: number

Defined in: ast/nodes.ts:7

Inherited from

BaseExpression.start


type

type: "BinaryExpression"

Defined in: ast/nodes.ts:57

Overrides

BaseExpression.type