├── .gitignore ├── Makefile ├── README.md ├── jitcompiler.py ├── mj.py ├── test-decorator.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslarsen/minijit/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslarsen/minijit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslarsen/minijit/HEAD/README.md -------------------------------------------------------------------------------- /jitcompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslarsen/minijit/HEAD/jitcompiler.py -------------------------------------------------------------------------------- /mj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslarsen/minijit/HEAD/mj.py -------------------------------------------------------------------------------- /test-decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslarsen/minijit/HEAD/test-decorator.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cslarsen/minijit/HEAD/test.py --------------------------------------------------------------------------------