mirror of
https://github.com/actions/runner.git
synced 2025-12-19 08:50:41 +00:00
18 lines
411 B
C#
18 lines
411 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.Actions.WorkflowParser.ObjectTemplating.Tokens
|
|
{
|
|
[DataContract]
|
|
public abstract class LiteralToken : ScalarToken
|
|
{
|
|
public LiteralToken(
|
|
Int32 tokenType,
|
|
Int32? fileId,
|
|
Int32? line,
|
|
Int32? column)
|
|
: base(tokenType, fileId, line, column)
|
|
{
|
|
}
|
|
}
|
|
} |