Skip to content

Documentation / @andrew_l/search-query-language / NodeBinaryExpression

Interface: NodeBinaryExpression

Binary expression node of the AST.

Extends

Properties

end

end: number

End positions of the node in the source code.

Inherited from

Node.end


left

left: NodeIdentifier

Left operand of the binary expression.


operator

operator: BinaryOperator

Operator of the binary expression.


right: NodeLiteral

Right operand of the binary expression.


start

start: number

Start positions of the node in the source code.

Inherited from

Node.start


type

type: "binary-expression"

Type of the node.

Overrides

Node.type