コード例 #1
0
 public void AppendExpression(RegexExpression expression)
 {
     if (this.pending != null)
     {
         this.current = RegexConcatenation.Create(this.current, this.pending);
     }
     this.pending = expression;
 }
コード例 #2
0
 public RegexExpression Concatenation(RegexConcatenation node, KeyValuePair <SymbolId, int?> context)
 {
     return(RegexConcatenation.Create(node.Left.Visit(this, context), node.Right.Visit(this, context)));
 }
コード例 #3
0
 public RxNode <TLetter> Concatenation(RegexConcatenation node, Context context)
 {
     return(new RxConcatenation <TLetter>(node.Left.Visit(this, context), node.Right.Visit(this, context)));
 }