예제 #1
0
 public GraphTypeNode(IdentifierType type, BaseNode node)
 {
     Type = type;
     Node = node;
 }
예제 #2
0
 private void ApplyAttributes( BaseNode node )
 {
     if (curAttributes.Count > 0)
     {
         node.Attributes = curAttributes;
         curAttributes = new NodeCollection<AttributeNode>();
     }
 }
예제 #3
0
 private void ApplyDocComment(BaseNode node)
 {
     if (currentDocComment != string.Empty)
     {
         node.DocComment = currentDocComment;
         currentDocComment = string.Empty;
     }
 }