Popularity
4.3
Stable
Activity
0.0
Stable
5
2
2

Monthly Downloads: 21
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Language    
Latest version: v0.1.0.6

language-lua2 alternatives and similar packages

Based on the "Language" category.
Alternatively, view language-lua2 alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of language-lua2 or a related project?

Add another 'Language' Package

README

Build Status

Unmaintained!

This parser works but is extremely slow and memory-intensive. You should probably use language-lua instead.

The main impetus behind this project was style-checking lua code, which requires token information to stick around after parsing.

Currently, this parser tags each AST node with the list of tokens used to produce it. Instead, the parser should simply tag each AST node with the indicies of the first and last token used to produce it, along with a vector of tokens.