*/
public Core(Parser parser) {
super();
this.parser = parser;
this.display = new UpperDisplay(this);
this.log = new EquationLog(this);
this.buttons = new CalculatorMainButtons(this);
this.angleBar = new AngleBar(this);
historyLocation = parser.getHistory().size();
input = "";
}