예제 #1
0
파일: BNF.cs 프로젝트: twpol/msts-tools
 public BnfRule(Bnf bnf, ReferenceOperator symbol, Operator expression)
 {
     Bnf           = bnf;
     Symbol        = symbol;
     Expression    = expression;
     ExpressionFsm = new Fsm(ExpandReferences(expression));
 }
예제 #2
0
파일: BNF.cs 프로젝트: twpol/msts-tools
 public BnfProduction(Bnf bnf, ReferenceOperator symbol, Operator expression) : base(bnf, symbol, expression)
 {
 }