| Server IP : 199.250.200.62 / Your IP : 216.73.216.15 Web Server : Apache System : Linux vps37394.inmotionhosting.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : jasonp18 ( 1000) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/cwd/opt/imh-python/lib/python3.9/site-packages/pygments/lexers/ |
Upload File : |
"""
pygments.lexers.gleam
~~~~~~~~~~~~~~~~~~~~~
Lexer for the Gleam programming language.
:copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
from pygments.lexer import RegexLexer, words, bygroups
from pygments.token import Comment, Operator, Keyword, Name, String, \
Number, Punctuation, Whitespace
__all__ = ['GleamLexer']
class GleamLexer(RegexLexer):
"""
Lexer for the Gleam programming language (version 1.0.0).
"""
name = 'Gleam'
url = 'https://gleam.run/'
filenames = ['*.gleam']
aliases = ['gleam']
mimetypes = ['text/x-gleam']
version_added = '2.19'
keywords = words((
'as', 'assert', 'auto', 'case', 'const', 'delegate', 'derive', 'echo',
'else', 'fn', 'if', 'implement', 'import', 'let', 'macro', 'opaque',
'panic', 'pub', 'test', 'todo', 'type', 'use',
), suffix=r'\b')
tokens = {
'root': [
# Comments
(r'(///.*?)(\n)', bygroups(String.Doc, Whitespace)),
(r'(//.*?)(\n)', bygroups(Comment.Single, Whitespace)),
# Keywords
(keywords, Keyword),
(r'([a-zA-Z_]+)(\.)', bygroups(Keyword, Punctuation)),
# Punctuation
(r'[()\[\]{}:;,@]+', Punctuation),
(r'(#|!=|!|==|\|>|\|\||\||\->|<\-|&&|<<|>>|\.\.|\.|=)', Punctuation),
# Operators
(r'(<>|\+\.?|\-\.?|\*\.?|/\.?|%\.?|<=\.?|>=\.?|<\.?|>\.?|=)', Operator),
# Strings
(r'"(\\"|[^"])*"', String),
# Identifiers
(r'\b(let)(\s+)(\w+)', bygroups(Keyword, Whitespace, Name.Variable)),
(r'\b(fn)(\s+)(\w+)', bygroups(Keyword, Whitespace, Name.Function)),
(r'[a-zA-Z_/]\w*', Name),
# numbers
(r'(\d+(_\d+)*\.(?!\.)(\d+(_\d+)*)?|\.\d+(_\d+)*)([eEf][+-]?[0-9]+)?', Number.Float),
(r'\d+(_\d+)*[eEf][+-]?[0-9]+', Number.Float),
(r'0[xX][a-fA-F0-9]+(_[a-fA-F0-9]+)*(\.([a-fA-F0-9]+(_[a-fA-F0-9]+)*)?)?p[+-]?\d+', Number.Float),
(r'0[bB][01]+(_[01]+)*', Number.Bin),
(r'0[oO][0-7]+(_[0-7]+)*', Number.Oct),
(r'0[xX][a-fA-F0-9]+(_[a-fA-F0-9]+)*', Number.Hex),
(r'\d+(_\d+)*', Number.Integer),
# Whitespace
(r'\s+', Whitespace),
],
}