Ejemplo n.º 1
0
 public override void AppendCommentToken(TreeConstruction tree, CommentToken token)
 {
     tree.AppendCommentForToken(token);
 }
Ejemplo n.º 2
0
 public override void AppendCommentToken(TreeConstruction tree, CommentToken token)
 {
     XmlComment comment = tree.CreateCommentForToken(token);
     tree.StackOfOpenElements[0].AppendChild(comment);
     return;
 }
Ejemplo n.º 3
0
 public override void AppendCommentToken(TreeConstruction tree, CommentToken token)
 {
     XmlComment comment = tree.CreateCommentForToken(token);
     tree.Document.AppendChild(comment);
     return;
 }
Ejemplo n.º 4
0
 public virtual void AppendCommentToken(TreeConstruction tree, CommentToken token)
 {
     AppendAnythingElse(tree, token);
 }
Ejemplo n.º 5
0
 public override void AppendCommentToken(TreeConstruction tree, CommentToken token)
 {
     tree.AppendToken<InHeadInsertionMode>(token);
 }