Пример #1
0
		private void EmitComment(Comment comment)
		{
			if (comment.IsInline)
			{
				Write(' ');
			}
			else
			{
				WriteBreak();
			}

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

			isIndentation = true;
		}
Пример #2
0
			void IParsingEventVisitor.Visit(Comment e)
			{
				throw new NotSupportedException();
			}