DEBFIND Suche nach Debian-Paketen

Suchplatform für Softwarepakete und Archive Debian-basierter Linux-Distributionen

beta ! Diese website wird noch weiterentwickelt.

Liste aller Kategorien/Sektionen | Suchmaske | Haftungsausschluß

Paketbeschreibung


Paketnamefrown
BeschreibungLALR(k) parser generator for Haskell 98
Archiv/RepositoryOffizielles Debian Archiv squeeze (main)
Version0.6.1-10
Sektiondevel
Prioritätoptional
Installierte Größe1732 Byte
Hängt ab vonlibc6 (>= 2.3), libffi5 (>= 3.0.4), libgmp3c2
Empfohlene Paketefrown-doc (= 0.6.1-10)
PaketbetreuerDebian Haskell Group
Quelle
Paketgröße505194 Byte
Prüfsumme MD5114df2dc03564be67f3f9603e3ee01fb
Prüfsumme SHA198ed3d62d81fbe321de47df61fd5ea35d8fabcba
Prüfsumme SHA2562ae46098226ee97c4d7562a45df11a5bd968f4989e187c62222dfdbf96ab818b
Link zum Herunterladenfrown_0.6.1-10_i386.deb
Ausführliche BeschreibungFrown is inspired by the parser generator Happy and uses a syntax quite simular as the syntax used by Happy. Happy only handles LALR(1) grammars while Frown can use more extensive LALR(k) grammars and the parsers generated by Frown are also faster than the parsers generated by Happy. . The salient features of Frown are: - The generated parsers are time and space efficient. On the downside, the parsers are quite large. - Frown generates four different types of parsers. As a common characteristic, the parsers are genuinely functional (ie 'table-free'); the states of the underlying LR automaton are encoded as mutually recursive functions. Three output formats use a typed stack representation, one format due to Ross Paterson (code=stackless) works even without a stack. - Encoding states as functions means that each state can be treated individually as opposed to a table driven-approach, which necessitates a uniform treatment of states. For instance, look-ahead is only used when necessary to resolve conflicts. - Frown comes with debugging and tracing facilities; the standard output format due to Doaitse Swierstra (code=standard) may be useful for teaching LR parsing. - Common grammatical patterns such as repetition of symbols can be captured using rule schemata. There are several predefined rule schemata. - Terminal symbols are arbitrary variable-free Haskell patterns or guards. Both terminal and nonterminal symbols may have an arbitrary number of synthesized attributes. - Frown comes with extensive documentation; several example grammars are included. . Furthermore, Frown supports the use of monadic lexers, monadic semantic actions, precedences and associativity, the generation of backtracking parsers, multiple start symbols, error reporting and a weak form of error correction.


Impressum
Linux is a registered trademark of Linus Torvalds