git @ Cat's Eye Technologies Turmac / master
Disable still-WIP Kondey compiler for checkpoint release of 0.2. Chris Pressey 1 year, 1 month ago
3 changed file(s) with 4 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
5252
5353 #### 0.2
5454
55 * Added Kondey backend for compiler (incomplete).
55 * Added beginnings of a Kondey backend for compiler (still WIP).
5656 * Fixed `gentape` subcommand. It now takes a comma-separated list of symbols
5757 to write to the tape, and honours (and requires) the `--backend` option.
5858 * Added `--normalize` flag, which works with all subcommands.
1111 import Language.Turmac.Normalizer (normalizeRules)
1212
1313 --
14 -- Under development!
14 -- Under construction!
1515 --
1616
1717 ----------------------
1818 import Language.Turmac.Backend.IRDump
1919 import Language.Turmac.Backend.Turmac
2020 import Language.Turmac.Backend.Python
21 import Language.Turmac.Backend.Kondey
21 -- FIXME import Language.Turmac.Backend.Kondey
2222
2323 --
2424 -- Command-line flags
7878 compileTo "ir-dump" = compileToIRDump
7979 compileTo "turmac" = compileToTurmac
8080 compileTo "python" = compileToPython
81 compileTo "kondey" = compileToKondey
81 -- FIXME compileTo "kondey" = compileToKondey
8282 compileTo _ = error "--backend must be given when compiling, and must be one of: 'ir-dump', 'turmac', or 'python'"
8383
8484 --