Creates an addition operation on the given expressions.
For example, to create x + 4:
addition = new Plus('x', 4);
or:
addition = new Variable('x') + new Number(4);
Source
Plus(first, second): super(first, second);
Creates an addition operation on the given expressions.
For example, to create x + 4:
addition = new Plus('x', 4);
or:
addition = new Variable('x') + new Number(4);
Plus(first, second): super(first, second);