├── .gitignore ├── LICENSE ├── README.md ├── bsconfig.json ├── package.json ├── src └── the-super-tiny-compiler.re └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .merlin 3 | npm-debug.log 4 | /lib/bs/ 5 | /node_modules/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/the-super-tiny-compiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/the-super-tiny-compiler/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/the-super-tiny-compiler/HEAD/bsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/the-super-tiny-compiler/HEAD/package.json -------------------------------------------------------------------------------- /src/the-super-tiny-compiler.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/the-super-tiny-compiler/HEAD/src/the-super-tiny-compiler.re -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchavarri/the-super-tiny-compiler/HEAD/test.js --------------------------------------------------------------------------------