public LogicWorkspace(int countOfExps) { this.countOfExps = countOfExps; expressions = new List<LogicWorkspaceItem>(countOfExps >= 20 ? 20 : countOfExps); parser = new LogicParser(); parameters = new LogicParameterCollection(); }
public void TestInit() { parser = new LogicParser(); }
public TruthTablePresenter() { parser = new LogicParser(); }