コード例 #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)
 {
 }