Merge pull request #3318 from shati-patel/lexer-unique

Highlight "unique" as a keyword in CodeQL docs
This commit is contained in:
Shati Patel 2020-04-23 09:18:39 +01:00 коммит произвёл GitHub
Родитель cfecc9cafa 321eb44370
Коммит 9c12fa32e1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -44,7 +44,7 @@ class QLLexer(RegexLexer):
'max', 'min', 'module', 'newtype', 'not', 'none', 'or', 'order',
'predicate', 'rank', 'result', 'select', 'strictconcat',
'strictcount', 'strictsum', 'sum', 'super', 'then', 'this',
'true', 'where'), prefix=r'\b', suffix=r'\b'),
'true', 'unique', 'where'), prefix=r'\b', suffix=r'\b'),
Keyword),
# Identifiers
(r'@?\w', Name),