BinaryExpr class

An expression that applies a binary operator to two operands.

Inheritance

Constructors

BinaryExpr(Expr left, String op, Expr right)
Creates a binary expression from left, op, and right.

Properties

hashCode int
The hash code for this object.
no setterinherited
left Expr
The expression evaluated on the left of op.
final
op String
The arithmetic, equality, or comparison operator.
final
The expression evaluated on the right of op.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited