コード例 #1
0
ファイル: Block.cs プロジェクト: moonwa/jade.net
 internal override Node Clone()
 {
     var clone = new Block();
     clone.Nodes.AddRange(from node in Nodes select node.Clone());
     return clone;
 }
コード例 #2
0
ファイル: Tag.cs プロジェクト: moonwa/jade.net
 internal Tag(string name, Block block = null)
 {            
     Name = name;
     Block = block ?? new Block();
 }
コード例 #3
0
ファイル: Block.cs プロジェクト: moonwa/jade.net
 /// <summary>
 /// Replace the nodes in `other` with the nodes
 /// in `this` block.
 /// </summary>
 /// <param name="other"></param>
 private void Replace(Block other)
 {
     other.Nodes = Nodes;
 }