Commit e0f38529 authored by Chinmay Garde's avatar Chinmay Garde

`==` operator override on expression returns a constraint

parent 1ad945f8
......@@ -57,7 +57,7 @@ class Expression extends _EquationMember {
Constraint operator <=(_EquationMember value) =>
_createConstraint(value, Relation.lessThanOrEqualTo);
operator ==(_EquationMember value) =>
Constraint operator ==(_EquationMember value) =>
_createConstraint(value, Relation.equalTo);
Expression operator +(_EquationMember m) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment