private static XpidlComment CreateXpidlComment(CommentSyntaxNode commentSyntaxNode)
		{
			if (commentSyntaxNode == null)
			{
				throw new ArgumentNullException("commentSyntaxNode");
			}

			var xpidlComment = new XpidlComment(commentSyntaxNode.CommentText);
			return xpidlComment;
		}
Beispiel #2
0
		internal void AddNode(XpidlComment comment)
		{
			AddNodeImpl(comment);
		}