Exemple #1
0
        private void EmitComment(Comment comment)
        {
            if (comment.IsInline)
            {
                Write(' ');
            }
            else
            {
                WriteBreak();
            }

            Write("# ");
            Write(comment.Value);

            isIndentation = true;
        }
Exemple #2
0
			void IParsingEventVisitor.Visit(Comment e)
			{
				throw new NotSupportedException();
			}