Beispiel #1
0
        public XmlElement Visit(CommentParseNode cpn)
        {
            var el = makeNode(cpn, "comment");

            addProperty(el, "value", cpn.Value);
            return(el);
        }
Beispiel #2
0
 /// <inheritdoc />
 public Node Visit(CommentParseNode cpn)
 {
     return(new NoopNode(cpn.Token, cpn));
 }
Beispiel #3
0
 /// <inheritdoc/>
 public virtual ParseNode Visit(CommentParseNode cpn)
 {
     return(cpn);
 }