blob: 5d7a2fa1dd66a7776e564a348bfd73b0a1f712fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Diagnostics.CodeAnalysis;
using System.Text;
namespace System.Web.Razor.Text
{
internal static class TextExtensions
{
public static void Seek(this ITextBuffer self, int characters)
{
self.Position += characters;
}
[SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope", Justification = "The consumer is expected to dispose this object")]
public static ITextDocument ToDocument(this ITextBuffer self)
{
ITextDocument ret = self as ITextDocument;
if (ret == null)
{
ret = new SeekableTextReader(self);
}
return ret;
}
public static LookaheadToken BeginLookahead(this ITextBuffer self)
{
int start = self.Position;
return new LookaheadToken(() =>
{
self.Position = start;
});
}
public static string ReadToEnd(this ITextBuffer self)
{
StringBuilder builder = new StringBuilder();
int read;
while ((read = self.Read()) != -1)
{
builder.Append((char)read);
}
return builder.ToString();
}
}
}
|