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