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.
18 lines
577 B
18 lines
577 B
namespace DOM.DSL.Model
|
|
{
|
|
internal class TChar
|
|
{
|
|
public const char TokenStart = '@';
|
|
public const char PropertyOrFuncStart = '.';
|
|
public const char PropertyIndexStart = '[';
|
|
public const char PropertyIndexEnd = ']';
|
|
public const char FuncArgsStart = '(';
|
|
public const char FuncArgsEnd = ')';
|
|
public const char FuncArgsSeparator = ',';
|
|
public const char Escape = '\\';
|
|
public const char CaretReturn = '\r';
|
|
public const char Newline = '\n';
|
|
public const char Tab = '\t';
|
|
}
|
|
}
|