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