public XmlElement Visit(CommentParseNode cpn) { var el = makeNode(cpn, "comment"); addProperty(el, "value", cpn.Value); return(el); }
/// <inheritdoc /> public Node Visit(CommentParseNode cpn) { return(new NoopNode(cpn.Token, cpn)); }
/// <inheritdoc/> public virtual ParseNode Visit(CommentParseNode cpn) { return(cpn); }