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

parseBLocks() private method

private parseBLocks ( ) : void
return void
		void parseBLocks ()
		{
			continueWithBlocks ();
			while ((currentLine = reader.ReadLine ()) != null) {
				parseLine ();
				lineCount++;
				if (currentBlock.Type == BlockType.Literal)
				{
					continueWithBlocks();
				}
			}
			continueWithBlocks ();
		}
		void continueWithBlocks ()