3

V'ícã@s.dZddlZGdd„deƒZGdd„dƒZdS)a
    pygments.scanner
    ~~~~~~~~~~~~~~~~

    This library implements a regex based scanner. Some languages
    like Pascal are easy to parse but have some keywords that
    depend on the context. Because of this it's impossible to lex
    that just by using a regular expression lexer like the
    `RegexLexer`.

    Have a look at the `DelphiLexer` to get an idea of how to use
    this scanner.

    :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.
éNc@seZdZdZdS)Ú	EndOfTextzZ
    Raise if end of text is reached and the user
    tried to call a match function.
    N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__©rrú4/tmp/pip-build-gk9425m9/Pygments/pygments/scanner.pyrsrc@sVeZdZdZddd„Zdd„ZeeejƒZdd„Zd	d
„Zdd„Z	d
d„Z
dd„ZdS)ÚScannerzp
    Simple scanner

    All method patterns are regular expression strings (not
    compiled expressions!)
    rcCs8||_t|ƒ|_d|_d|_||_d|_d|_i|_dS)z{
        :param text:    The text which should be scanned
        :param flags:   default regular expression flags
        rN)	ÚdataÚlenÚdata_lengthÚ	start_posÚposÚflagsÚlastÚmatchÚ	_re_cache)ÚselfÚtextrrrrÚ__init__#s
zScanner.__init__cCs|j|jkS)z.`True` if the scanner reached the end of text.)rr)rrrrÚeos1szScanner.eoscCs@|jrtƒ‚||jkr*tj||jƒ|j|<|j|j|j|jƒS)z“
        Apply `pattern` on the current position and return
        the match object. (Doesn't touch pos). Use this for
        lookahead.
        )	rrrÚreÚcompilerrr
r)rÚpatternrrrÚcheck6s

z
Scanner.checkcCs|j|ƒdk	S)zdApply a pattern on the current position and check
        if it patches. Doesn't touch pos.
        N)r)rrrrrÚtestBszScanner.testcCsv|jrtƒ‚||jkr*tj||jƒ|j|<|j|_|j|j|j|j	ƒ}|dkrTdS|j
ƒ|_|jƒ|_	|j
ƒ|_dS)a
        Scan the text for the given pattern and update pos/match
        and related fields. The return value is a boolean that
        indicates if the pattern matched. The matched value is
        stored on the instance as ``match``, the last value is
        stored as ``last``. ``start_pos`` is the position of the
        pointer before the pattern was matched, ``pos`` is the
        end position.
        NFT)rrrrrrrrr
rÚstartr
ÚendÚgroup)rrÚmrrrÚscanHs




zScanner.scancCs|jdƒdS)zScan exactly one char.Ú.N)r )rrrrÚget_char_szScanner.get_charcCsd|jj|j|jfS)Nz
<%s %d/%d>)Ú	__class__rrr)rrrrÚ__repr__cszScanner.__repr__N)r)rrrrrrÚpropertyrrr r"r$rrrrr	s
r	)rrÚRuntimeErrorrr	rrrrÚ<module>s