CFGLib.CFGtoCNF.StepStart C# (CSharp) Method

StepStart() private method

Eliminate the start symbol from right-hand sides
private StepStart ( ISet productions ) : void
productions ISet
return void
		private void StepStart(ISet<Production> productions) {
			var fresh = GetFresh();
			productions.Add(
				// new Production(fresh, new Sentence { Nonterminal.Of("S") })
				new Production(fresh, new Sentence { _grammar.Start })
			);
			_startSymbol = fresh;
		}