module documentation

pygments.lexers._vbscript_builtins ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ These are manually translated lists from http://www.indusoft.com/pdf/VBScript%20Reference.pdf. :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details.

Constant BUILTIN_CONSTANTS Undocumented
Constant BUILTIN_FUNCTIONS Undocumented
Constant BUILTIN_VARIABLES Undocumented
Constant KEYWORDS Undocumented
Constant OPERATOR_WORDS Undocumented
Constant OPERATORS Undocumented
BUILTIN_CONSTANTS: list[str] = (source)

Undocumented

Value
['False',
 'True',
 'vbAbort',
 'vbAbortRetryIgnore',
 'vbApplicationModal',
 'vbArray',
 'vbBinaryCompare',
...
BUILTIN_FUNCTIONS: list[str] = (source)

Undocumented

Value
['Abs',
 'Array',
 'Asc',
 'Atn',
 'CBool',
 'CByte',
 'CCur',
...
BUILTIN_VARIABLES: list[str] = (source)

Undocumented

Value
['Debug',
 'Dictionary',
 'Drive',
 'Drives',
 'Err',
 'File',
 'Files',
...
KEYWORDS: list[str] = (source)

Undocumented

Value
['ByRef',
 'ByVal',
 'call',
 'case',
 'class',
 'do',
 'each',
...
OPERATOR_WORDS: list[str] = (source)

Undocumented

Value
['mod', 'and', 'or', 'xor', 'eqv', 'imp', 'is', 'not']
OPERATORS: list[str] = (source)

Undocumented

Value
['+', '-', '*', '/', '\\', '^', '|', '<', '<=', '>', '>=', '=', '<>', '&', '$']