BlackLinks.Templates.InternalCSharpTemplateCompiler.continueWithBlocks C# (CSharp) Method

continueWithBlocks() private method

private continueWithBlocks ( ) : void
return void
		void continueWithBlocks ()
		{
			if (currentBlock != null && !currentBlock.Empty)
			{
				this.blocks.Add (currentBlock);
			}
			currentBlock = new TemplateBlock ();
			currentBlock.Line = lineCount;
		}
		void parseLine ()