File tree Expand file tree Collapse file tree 2 files changed +31
-30
lines changed
Expand file tree Collapse file tree 2 files changed +31
-30
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ -- *-lua-*--
2+ package = " lua-parser"
3+ version = " 0.1.1-1"
4+ source = {
5+ url = " git://github.com/andremm/lua-parser" ,
6+ tag = " v0.1.1" ,
7+ }
8+ description = {
9+ summary = " A Lua 5.3 parser written with LPeg" ,
10+ detailed = [[
11+ This is a Lua 5.3 parser written with LPeg that generates an AST in
12+ the format specified by Metalua.
13+ The parser also implements an error reporting technique that is
14+ based on tracking the farthest failure position.
15+ ]] ,
16+ homepage = " https://github.com/andremm/lua-parser" ,
17+ license = " MIT"
18+ }
19+ dependencies = {
20+ " lua >= 5.1" ,
21+ " lpeg >= 0.12" ,
22+ }
23+ build = {
24+ type = " builtin" ,
25+ modules = {
26+ [" lua-parser.parser" ] = " lua-parser/parser.lua" ,
27+ [" lua-parser.pp" ] = " lua-parser/pp.lua" ,
28+ [" lua-parser.scope" ] = " lua-parser/scope.lua" ,
29+ }
30+ }
31+
You can’t perform that action at this time.
0 commit comments