GitHub Actions Runner
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using GitHub.DistributedTask.ObjectTemplating.Tokens;
|
||||
|
||||
namespace GitHub.DistributedTask.ObjectTemplating
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface for reading a source object (or file).
|
||||
/// This interface is used by TemplateReader to build a TemplateToken DOM.
|
||||
/// </summary>
|
||||
internal interface IObjectReader
|
||||
{
|
||||
Boolean AllowLiteral(out LiteralToken token);
|
||||
|
||||
Boolean AllowSequenceStart(out SequenceToken token);
|
||||
|
||||
Boolean AllowSequenceEnd();
|
||||
|
||||
Boolean AllowMappingStart(out MappingToken token);
|
||||
|
||||
Boolean AllowMappingEnd();
|
||||
|
||||
void ValidateStart();
|
||||
|
||||
void ValidateEnd();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user