This commit is contained in:
Daan 2013-05-11 23:44:57 -07:00
Родитель f44dc2f022
Коммит cf5a902532
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -45,7 +45,7 @@ namespace ColorCode.Compilation.Languages
private const string symbol = @"[$%&\*\+@!\\\^~=\.:\-\?\|<>/]";
private const string symbols = @"(?:" + symbol + @")+";
private const string escape = @"\\(?:[nrtv\\""']|x[\da-fA-F]{2})";
private const string escape = @"\\(?:[nrt\\""']|x[\da-fA-F]{2}|u[\da-fA-F]{4}|U[\da-fA-F]{6})";
public IList<LanguageRule> Rules
{