├── .gitattributes ├── .github ├── linters │ └── .markdown-lint.yml └── workflows │ ├── gh-pages.yml │ ├── run-linters.yml │ └── run-tests.yml ├── .gitignore ├── README.md ├── amalg-scm-0.rockspec ├── src ├── amalg.lua └── amalg │ ├── brieflz │ ├── deflate.lua │ └── inflate.lua │ ├── dumbluaparser │ └── transform.lua │ ├── fennel │ └── transform.lua │ ├── luac │ └── transform.lua │ ├── luasrcdiet │ └── transform.lua │ ├── moonscript │ └── transform.lua │ └── teal │ └── transform.lua └── tests ├── aiomod.c ├── cmod.c ├── main.fnl ├── main.lua ├── main.moon ├── main.tl ├── module1.fnl ├── module1.lua ├── module1.moon ├── module1.tl ├── module2.lua ├── run.bat ├── run.sh └── vio.lua /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bat eol=crlf 2 | 3 | -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/run-linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/.github/workflows/run-linters.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # docco output 2 | docs/ 3 | 4 | # temporary files 5 | .*.swp 6 | 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/README.md -------------------------------------------------------------------------------- /amalg-scm-0.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/amalg-scm-0.rockspec -------------------------------------------------------------------------------- /src/amalg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/src/amalg.lua -------------------------------------------------------------------------------- /src/amalg/brieflz/deflate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/src/amalg/brieflz/deflate.lua -------------------------------------------------------------------------------- /src/amalg/brieflz/inflate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/src/amalg/brieflz/inflate.lua -------------------------------------------------------------------------------- /src/amalg/dumbluaparser/transform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/src/amalg/dumbluaparser/transform.lua -------------------------------------------------------------------------------- /src/amalg/fennel/transform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/src/amalg/fennel/transform.lua -------------------------------------------------------------------------------- /src/amalg/luac/transform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/src/amalg/luac/transform.lua -------------------------------------------------------------------------------- /src/amalg/luasrcdiet/transform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/src/amalg/luasrcdiet/transform.lua -------------------------------------------------------------------------------- /src/amalg/moonscript/transform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/src/amalg/moonscript/transform.lua -------------------------------------------------------------------------------- /src/amalg/teal/transform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/src/amalg/teal/transform.lua -------------------------------------------------------------------------------- /tests/aiomod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/aiomod.c -------------------------------------------------------------------------------- /tests/cmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/cmod.c -------------------------------------------------------------------------------- /tests/main.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/main.fnl -------------------------------------------------------------------------------- /tests/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/main.lua -------------------------------------------------------------------------------- /tests/main.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/main.moon -------------------------------------------------------------------------------- /tests/main.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/main.tl -------------------------------------------------------------------------------- /tests/module1.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/module1.fnl -------------------------------------------------------------------------------- /tests/module1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/module1.lua -------------------------------------------------------------------------------- /tests/module1.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/module1.moon -------------------------------------------------------------------------------- /tests/module1.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/module1.tl -------------------------------------------------------------------------------- /tests/module2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/module2.lua -------------------------------------------------------------------------------- /tests/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/run.bat -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/run.sh -------------------------------------------------------------------------------- /tests/vio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siffiejoe/lua-amalg/HEAD/tests/vio.lua --------------------------------------------------------------------------------