class documentation

class DelphiLexer(Lexer): (source)

View In Hierarchy

For Delphi (Borland Object Pascal), Turbo Pascal and Free Pascal source code. Additional options accepted: `turbopascal` Highlight Turbo Pascal specific keywords (default: ``True``). `delphi` Highlight Borland Delphi specific keywords (default: ``True``). `freepascal` Highlight Free Pascal specific keywords (default: ``True``). `units` A list of units that should be considered builtin, supported are ``System``, ``SysUtils``, ``Classes`` and ``Math``. Default is to consider all of them builtin.

Method __init__ Undocumented
Method get_tokens_unprocessed Return an iterable of (index, tokentype, value) pairs where "index" is the starting position of the token within the input text.
Constant ASM_INSTRUCTIONS Undocumented
Constant ASM_REGISTERS Undocumented
Constant BLOCK_KEYWORDS Undocumented
Constant BUILTIN_TYPES Undocumented
Constant BUILTIN_UNITS Undocumented
Constant DELPHI_KEYWORDS Undocumented
Constant DIRECTIVES Undocumented
Constant FREE_PASCAL_KEYWORDS Undocumented
Constant FUNCTION_MODIFIERS Undocumented
Constant PORTUGOL_BUILTIN_TYPES Undocumented
Constant PORTUGOL_KEYWORDS Undocumented
Constant TURBO_PASCAL_KEYWORDS Undocumented
Class Variable aliases Undocumented
Class Variable filenames Undocumented
Class Variable mimetypes Undocumented
Class Variable name Undocumented
Instance Variable builtins Undocumented
Instance Variable is_portugol Undocumented
Instance Variable keywords Undocumented

Inherited from Lexer:

Method __repr__ Undocumented
Method add_filter Add a new stream filter to this lexer.
Method analyse_text Has to return a float between ``0`` and ``1`` that indicates if a lexer wants to highlight this text. Used by ``guess_lexer``. If this method returns ``0`` it won't highlight it in any case, if it returns ``1`` highlighting with this lexer is guaranteed.
Method get_tokens Return an iterable of (tokentype, value) pairs generated from `text`. If `unfiltered` is set to `True`, the filtering mechanism is bypassed even if filters are defined.
Class Variable alias_filenames Undocumented
Class Variable priority Undocumented
Class Variable url Undocumented
Instance Variable encoding Undocumented
Instance Variable ensurenl Undocumented
Instance Variable filters Undocumented
Instance Variable options Undocumented
Instance Variable stripall Undocumented
Instance Variable stripnl Undocumented
Instance Variable tabsize Undocumented
def __init__(self, **options): (source)

Undocumented

def get_tokens_unprocessed(self, text): (source)

Return an iterable of (index, tokentype, value) pairs where "index" is the starting position of the token within the input text. In subclasses, implement this method as a generator to maximize effectiveness.

ASM_INSTRUCTIONS: set[str] = (source)

Undocumented

Value
set(['aaa',
     'aad',
     'aam',
     'aas',
     'adc',
     'add',
     'and',
...
ASM_REGISTERS: set[str] = (source)

Undocumented

Value
set(['ah',
     'al',
     'ax',
     'bh',
     'bl',
     'bp',
     'bx',
...
BLOCK_KEYWORDS: set[str] = (source)

Undocumented

Value
set(['begin',
     'class',
     'const',
     'constructor',
     'destructor',
     'end',
     'finalization',
...
BUILTIN_TYPES: set[str] = (source)

Undocumented

Value
set(['ansichar',
     'ansistring',
     'bool',
     'boolean',
     'byte',
     'bytebool',
     'cardinal',
...
BUILTIN_UNITS: dict = (source)

Undocumented

Value
{'System': ('abs',
            'acquireexceptionobject',
            'addr',
            'ansitoutf8',
            'append',
            'arctan',
            'assert',
...
DELPHI_KEYWORDS: tuple[str, ...] = (source)

Undocumented

Value
('as',
 'class',
 'except',
 'exports',
 'finalization',
 'finally',
 'initialization',
...
DIRECTIVES: set[str] = (source)

Undocumented

Value
set(['absolute',
     'abstract',
     'assembler',
     'cppdecl',
     'default',
     'far',
     'far16',
...
FREE_PASCAL_KEYWORDS: tuple[str, ...] = (source)

Undocumented

Value
('dispose', 'exit', 'false', 'new', 'true')
FUNCTION_MODIFIERS: set[str] = (source)

Undocumented

Value
set(['alias',
     'cdecl',
     'export',
     'inline',
     'interrupt',
     'nostackframe',
     'pascal',
...
PORTUGOL_BUILTIN_TYPES: set[str] = (source)

Undocumented

Value
set(['inteiro', 'real', 'caractere', 'logico'])
PORTUGOL_KEYWORDS: tuple[str, ...] = (source)

Undocumented

Value
('aleatorio',
 'algoritmo',
 'arquivo',
 'ate',
 'caso',
 'cronometro',
 'debug',
...
TURBO_PASCAL_KEYWORDS: tuple[str, ...] = (source)

Undocumented

Value
('absolute',
 'and',
 'array',
 'asm',
 'begin',
 'break',
 'case',
...

Undocumented

filenames: list[str] = (source)

Undocumented

mimetypes: list[str] = (source)

Undocumented

Undocumented

builtins = (source)

Undocumented

is_portugol: bool = (source)

Undocumented

keywords = (source)

Undocumented