Example #1
0
 public NodeCProp(ITerminalNode terminal, NodeCond cond = null, NodeCChildren children = null)
     : base(terminal)
 {
     Cond     = cond;
     Children = children;
 }
Example #2
0
 public NodeCChildren(ITerminalNode terminal, NodeCond cond = null, NodeCChildren children = null)
     : base(terminal, cond, children)
 {
 }
Example #3
0
 protected NodeSubIter(ITerminalNode terminal, NodeCond cond = null, NodeCChildren children = null)
     : base(terminal, cond, children)
 {
 }
Example #4
0
 public NodeCTabl(ITerminalNode terminal, NodeCond cond = null, NodeCChildren children = null)
     : base(terminal, cond, children)
 {
     _tablName = Token.Text;
 }