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.
Zero/ZeroLevel/Services/DOM/DSL/Model/TChar.cs

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';
}
}

Powered by TurnKey Linux.