]> git.lizzy.rs Git - metalua.git/blob - metalua-parser-0.7.2-1.rockspec
ast_to_src: format function calls and unary operators without space
[metalua.git] / metalua-parser-0.7.2-1.rockspec
1 --*-lua-*--
2 package = "metalua-parser"
3 version = "0.7.2-1"
4 source = {
5    url = "git://git.eclipse.org/gitroot/koneki/org.eclipse.koneki.metalua.git",
6    tag = "v0.7.2",
7 }
8 description = {
9    summary = "Metalua's parser: converting Lua source strings and files into AST",
10    detailed = [[
11            This is a subset of the full Metalua compiler. It defines and generates an AST
12            format for Lua programs, which offers a nice level of abstraction to reason about
13            and manipulate Lua programs.
14    ]],
15    homepage = "http://git.eclipse.org/c/koneki/org.eclipse.koneki.metalua.git",
16    license = "EPL + MIT"
17 }
18 dependencies = {
19     "lua ~> 5.1",
20     "checks >= 1.0",
21 }
22 build = {
23     type="builtin",
24     modules={
25         ["metalua.grammar.generator"] = "metalua/grammar/generator.lua",
26         ["metalua.grammar.lexer"] = "metalua/grammar/lexer.lua",
27         ["metalua.compiler.parser"] = "metalua/compiler/parser.lua",
28         ["metalua.compiler.parser.common"] = "metalua/compiler/parser/common.lua",
29         ["metalua.compiler.parser.table"] = "metalua/compiler/parser/table.lua",
30         ["metalua.compiler.parser.ext"] = "metalua/compiler/parser/ext.lua",
31         ["metalua.compiler.parser.annot.generator"] = "metalua/compiler/parser/annot/generator.lua",
32         ["metalua.compiler.parser.annot.grammar"] = "metalua/compiler/parser/annot/grammar.lua",
33         ["metalua.compiler.parser.stat"] = "metalua/compiler/parser/stat.lua",
34         ["metalua.compiler.parser.misc"] = "metalua/compiler/parser/misc.lua",
35         ["metalua.compiler.parser.lexer"] = "metalua/compiler/parser/lexer.lua",
36         ["metalua.compiler.parser.meta"] = "metalua/compiler/parser/meta.lua",
37         ["metalua.compiler.parser.expr"] = "metalua/compiler/parser/expr.lua",
38         ["metalua.compiler"] = "metalua/compiler.lua",
39         ["metalua.pprint"] = "metalua/pprint.lua",
40     }
41 }
42