Modified: Moved EventReader to YamlDotNet.Core because it can be useful for other purposes.

This commit is contained in:
Antoine Aubry 2008-11-06 18:55:32 +00:00
Родитель 1087f9de94
Коммит c4c6cb8112
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -4,12 +4,12 @@ using YamlDotNet.Core;
using System.Globalization;
using Event = YamlDotNet.Core.Events.ParsingEvent;
namespace YamlDotNet.RepresentationModel
namespace YamlDotNet.Core
{
/// <summary>
/// Reads events from a sequence of <see cref="Event" />.
/// </summary>
internal class EventReader
public class EventReader
{
private readonly Parser parser;
private bool endOfStream;

Просмотреть файл

@ -67,6 +67,7 @@
<Compile Include="Constants.cs" />
<Compile Include="Emitter.cs" />
<Compile Include="EmitterState.cs" />
<Compile Include="EventReader.cs" />
<Compile Include="Events\AnchorAlias.cs" />
<Compile Include="Events\DocumentEnd.cs" />
<Compile Include="Events\DocumentStart.cs" />

Просмотреть файл

@ -66,7 +66,6 @@
<Compile Include="AnchorNotFoundException.cs" />
<Compile Include="DocumentLoadingState.cs" />
<Compile Include="DuplicateAnchorException.cs" />
<Compile Include="EventReader.cs" />
<Compile Include="IYamlVisitor.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="YamlAliasNode.cs" />