Custom operators were being recursively defined which caused:
operator + left 2 = (left, right) => {
return #`${left} + ${right}`;
}
to go into an infinite loop. Not good, this PR fixes that.
Custom operators were being recursively defined which caused:
operator + left 2 = (left, right) => {
return #`${left} + ${right}`;
}
to go into an infinite loop. Not good, this PR fixes that.