aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/Pygments/py3/pygments/lexers/asm.py
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-06-09 14:39:19 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-06-09 14:39:19 +0300
commitc04b663c7bb4b750deeb8f48f620497ec13da8fa (patch)
tree151ebc8bfdd2ad918caf5e6e2d8013e14272ddf8 /contrib/python/Pygments/py3/pygments/lexers/asm.py
parent0d55ca22c507d18c2f35718687e0b06d9915397b (diff)
downloadydb-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.py14
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']