예제 #1
0
파일: EarleyParser.cs 프로젝트: SeanU/NEPI
 internal EarleyParser(Production start)
 {
     //			_rules = rules.ToArray();
     _start = start;
 }
예제 #2
0
파일: EarleyItem.cs 프로젝트: SeanU/NEPI
 public EarleyItem(Production production, int position, List<EarleyItem> parent)
 {
     _production = production;
     _position = position;
     _parent = parent;
 }