private DotHtmlCommentNode ReadComment() { var startIndex = CurrentIndex; var node = new DotHtmlCommentNode(); node.StartToken = Read(); node.ValueNode = ReadTextValue(false, false, DothtmlTokenType.CommentBody); Assert(DothtmlTokenType.CloseComment); node.EndToken = Read(); node.Tokens.Add(GetTokensFrom(startIndex)); return(node); }
public void Visit(DotHtmlCommentNode comment) { LastFoundNode = comment; }