diff options
Diffstat (limited to 'pygments/lexers/_lassobuiltins.py')
-rw-r--r-- | pygments/lexers/_lassobuiltins.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/pygments/lexers/_lassobuiltins.py b/pygments/lexers/_lassobuiltins.py index 9a0a89da..aa9d2343 100644 --- a/pygments/lexers/_lassobuiltins.py +++ b/pygments/lexers/_lassobuiltins.py @@ -10,7 +10,7 @@ """ BUILTINS = { - 'Types': [ + 'Types': ( 'null', 'void', 'tag', @@ -270,8 +270,8 @@ BUILTINS = { 'web_error_atend', 'web_response_impl', 'web_router' - ], - 'Traits': [ + ), + 'Traits': ( 'trait_asstring', 'any', 'trait_generator', @@ -344,8 +344,8 @@ BUILTINS = { 'web_node_content_html_specialized', 'web_node_content_css_specialized', 'web_node_content_js_specialized' - ], - 'Unbound Methods': [ + ), + 'Unbound Methods': ( 'fail_now', 'register', 'register_thread', @@ -1845,8 +1845,8 @@ BUILTINS = { 'web_response', 'web_router_database', 'web_router_initialize' - ], - 'Lasso 8 Tags': [ + ), + 'Lasso 8 Tags': ( '__char', '__sync_timestamp__', '_admin_addgroup', @@ -3030,10 +3030,10 @@ BUILTINS = { 'xsd_processsimpletype', 'xsd_ref', 'xsd_type' - ] + ) } MEMBERS = { - 'Member Methods': [ + 'Member Methods': ( 'escape_member', 'oncompare', 'sameas', @@ -4720,8 +4720,8 @@ MEMBERS = { 'acceptpost', 'csscontent', 'jscontent' - ], - 'Lasso 8 Member Tags': [ + ), + 'Lasso 8 Member Tags': ( 'accept', 'add', 'addattachment', @@ -5178,5 +5178,5 @@ MEMBERS = { 'xmllang', 'xmlschematype', 'year' - ] + ) } |