Use the new line character to check if the CodeWriter buffer ends in a line feed.

Fixes #577
This commit is contained in:
Pranav K 2015-11-19 12:08:00 -08:00
parent 42acfe43ad
commit 36c744ff29
2 changed files with 7 additions and 3 deletions

View File

@ -79,7 +79,7 @@ namespace Microsoft.AspNet.Razor.CodeGenerators
public void MarkLineMappingEnd()
{
_generatedContentLength = _writer.GenerateCode().Length - _generatedLocation.AbsoluteIndex;
_generatedContentLength = _writer.Builder.Length - _generatedLocation.AbsoluteIndex;
}
public void Dispose()
@ -89,7 +89,7 @@ namespace Microsoft.AspNet.Razor.CodeGenerators
// Verify that the generated length has not already been calculated
if (_generatedContentLength == 0)
{
_generatedContentLength = _writer.GenerateCode().Length - _generatedLocation.AbsoluteIndex;
_generatedContentLength = _writer.Builder.Length - _generatedLocation.AbsoluteIndex;
}
var generatedLocation = new MappingLocation(_generatedLocation, _generatedContentLength);
@ -114,7 +114,8 @@ namespace Microsoft.AspNet.Razor.CodeGenerators
{
// Need to add an additional line at the end IF there wasn't one already written.
// This is needed to work with the C# editor's handling of #line ...
var endsWithNewline = _writer.GenerateCode().EndsWith("\n");
var builder = _writer.Builder;
var endsWithNewline = builder.Length > 0 && builder[builder.Length - 1] == '\n';
// Always write at least 1 empty line to potentially separate code from pragmas.
_writer.WriteLine();

View File

@ -3,6 +3,7 @@
using System;
using System.IO;
using System.Text;
namespace Microsoft.AspNet.Razor.CodeGenerators
{
@ -18,6 +19,8 @@ namespace Microsoft.AspNet.Razor.CodeGenerators
private int _currentLineIndex;
private int _currentLineCharacterIndex;
public StringBuilder Builder => _writer.GetStringBuilder();
public string LastWrite { get; private set; }
public int CurrentIndent { get; private set; }