Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/jsparagus/js_parser/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  parser.py   Sprache: Python

 
#!/usr/bin/env python

"""parser.py - A JavaScript parser, currently with many bugs.

See README.md for instructions.
"""

from . import parser_tables
from .lexer import JSLexer


# "type: ignore" because mypy can't see inside js_parser.parser_tables.
class JSParser(parser_tables.Parser):  # type: ignore
    def __init__(self, goal='Script', builder=None):
        super().__init__(goal, builder)
        self._goal = goal

    def clone(self):
        return JSParser(self._goal, self.methods)

    def on_recover(self, error_code, lexer, stv):
        """Check that ASI error recovery is really acceptable."""
        if error_code == 'asi':
            # ASI is allowed in three places:
            # - at the end of the source text
            # - before a close brace `}`
            # - after a LineTerminator
            # Hence the three-part if-condition below.
            #
            # The other quirks of ASI are implemented by massaging the syntax,
            # in parse_esgrammar.py.
            if not self.closed and stv.term != '}' and not lexer.saw_line_terminator():
                lexer.throw("missing semicolon")
        else:
            # ASI is always allowed in this one state.
            assert error_code == 'do_while_asi'


def parse_Script(text):
    lexer = JSLexer(JSParser('Script'))
    lexer.write(text)
    return lexer.close()

Messung V0.5
C=90 H=94 G=91

¤ Dauer der Verarbeitung: 0.0 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.