mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
559 B
25 lines
559 B
namespace DOM.DSL.Tokens
|
|
{
|
|
/// <summary>
|
|
/// Текстовый токен
|
|
/// </summary>
|
|
public class TTextToken :
|
|
TToken
|
|
{
|
|
/// <summary>
|
|
/// Текст в шаблоне, переносимый в результат без обработки
|
|
/// </summary>
|
|
public string Text;
|
|
|
|
public override TToken Clone()
|
|
{
|
|
return new TTextToken { Text = this.Text };
|
|
}
|
|
|
|
public override TToken CloneLocal()
|
|
{
|
|
return Clone();
|
|
}
|
|
}
|
|
}
|