diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-09 14:39:19 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-09 14:39:19 +0300 |
commit | c04b663c7bb4b750deeb8f48f620497ec13da8fa (patch) | |
tree | 151ebc8bfdd2ad918caf5e6e2d8013e14272ddf8 /contrib/python/Pygments/py3/pygments/lexers/asm.py | |
parent | 0d55ca22c507d18c2f35718687e0b06d9915397b (diff) | |
download | ydb-c04b663c7bb4b750deeb8f48f620497ec13da8fa.tar.gz |
intermediate changes
ref:2d4f292087954c9344efdabb7b2a67f466263c65
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/lexers/asm.py')
-rw-r--r-- | contrib/python/Pygments/py3/pygments/lexers/asm.py | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/contrib/python/Pygments/py3/pygments/lexers/asm.py b/contrib/python/Pygments/py3/pygments/lexers/asm.py index e5f795f4f3..8e803c9116 100644 --- a/contrib/python/Pygments/py3/pygments/lexers/asm.py +++ b/contrib/python/Pygments/py3/pygments/lexers/asm.py @@ -4,7 +4,7 @@ Lexers for assembly languages. - :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -350,6 +350,7 @@ class LlvmLexer(RegexLexer): For LLVM assembly code. """ name = 'LLVM' + url = 'https://llvm.org/docs/LangRef.html' aliases = ['llvm'] filenames = ['*.ll'] mimetypes = ['text/x-llvm'] @@ -490,11 +491,10 @@ class LlvmMirBodyLexer(RegexLexer): """ For LLVM MIR examples without the YAML wrapper. - For more information on LLVM MIR see https://llvm.org/docs/MIRLangRef.html. - .. versionadded:: 2.6 """ name = 'LLVM-MIR Body' + url = 'https://llvm.org/docs/MIRLangRef.html' aliases = ['llvm-mir-body'] filenames = [] mimetypes = [] @@ -636,11 +636,10 @@ class LlvmMirLexer(RegexLexer): see the state of the compilation process at various points, as well as test individual pieces of the compiler. - For more information on LLVM MIR see https://llvm.org/docs/MIRLangRef.html. - .. versionadded:: 2.6 """ name = 'LLVM-MIR' + url = 'https://llvm.org/docs/MIRLangRef.html' aliases = ['llvm-mir'] filenames = ['*.mir'] @@ -861,7 +860,7 @@ class TasmLexer(RegexLexer): include('punctuation'), (register, Name.Builtin), (identifier, Name.Variable), - # Do not match newline when it's preceeded by a backslash + # Do not match newline when it's preceded by a backslash (r'(\\)(\s*)(;.*)([\r\n])', bygroups(Text, Whitespace, Comment.Single, Whitespace)), (r'[\r\n]+', Whitespace, '#pop'), include('whitespace') @@ -935,11 +934,10 @@ class Dasm16Lexer(RegexLexer): """ For DCPU-16 Assembly. - Check http://0x10c.com/doc/dcpu-16.txt - .. versionadded:: 2.4 """ name = 'DASM16' + url = 'http://0x10c.com/doc/dcpu-16.txt' aliases = ['dasm16'] filenames = ['*.dasm16', '*.dasm'] mimetypes = ['text/x-dasm16'] |