コード例 #1
0
 public GraphTypeNode(IdentifierType type, BaseNode node)
 {
     Type = type;
     Node = node;
 }
コード例 #2
0
ファイル: Parser.cs プロジェクト: mintberry/stackrecaller
 private void ApplyAttributes( BaseNode node )
 {
     if (curAttributes.Count > 0)
     {
         node.Attributes = curAttributes;
         curAttributes = new NodeCollection<AttributeNode>();
     }
 }
コード例 #3
0
ファイル: Parser.cs プロジェクト: andyhebear/Csharp-Parser
 private void ApplyDocComment(BaseNode node)
 {
     if (currentDocComment != string.Empty)
     {
         node.DocComment = currentDocComment;
         currentDocComment = string.Empty;
     }
 }