rail-compiler-editor alternatives and similar packages
Based on the "Language" category.
Alternatively, view rail-compiler-editor alternatives based on common mentions on social networks and blogs.
-
purescript
A strongly-typed language that compiles to JavaScript -
elm-compiler
Compiler for Elm, a functional language for reliable webapps. -
stylish-haskell
Haskell code prettifier [Moved to: https://github.com/haskell/stylish-haskell] -
elm-reactor
Interactive development tool for Elm programs -
haskell-src-exts
Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer -
frp-arduino
Arduino programming without the hassle of C. -
haskell-tools-ast-fromghc
Developer tools for Haskell -
haskell-tools-ast-gen
Developer tools for Haskell -
language-javascript
Parser for JavaScript, in Haskell -
language-python
A parser for Python 2.x and 3.x written in Haskell -
liquid-fixpoint
Horn Clause Constraint Solving for Liquid Types -
nirum
Nirum: IDL compiler and RPC/distributed object framework for microservices -
elm-export
Create Elm types and JSON decoders from Haskell source. -
shentong
A Haskell implementation of the Shen programming language. -
tal
An implementation of Typed Assembly Language (Morrisett, Walker, Crary, Glew) -
camfort
Light-weight verification and transformation tools for Fortran -
type-of-html
High performance type safe html generation -
language-c-quote
C/CUDA/OpenCL/Objective-C quasiquoting library. -
fortran-src
Fortran parsing and static analysis infrastructure -
aterm-utils
Utility functions for working with aterms as generated by Minitermite -
language-rust
Parser and pretty-printer for the Rust language -
language-ecmascript
Haskell library: ECMAScript parser, pretty-printer and additional tools -
formura
Describe stencil formurae without even translating them -
homplexity
Haskell code complexity and quality measurement -
ministg
Ministg is an interpreter for a high-level, small-step, operational semantics for the STG machine. -
haskell-names
Haskell suite library for name resolution -
purescript-tsd-gen
TypeScript Declaration File (.d.ts) generator for PureScript
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of rail-compiler-editor or a related project?
README
A Rail compiler written in Haskell 
This is (or rather: will become) a compiler for the esoteric programming language Rail, written in Haskell.
Contents of this repository
documentation
contains additional documentation.- The main documentation will be found in the code.
src
contains the Rail compiler and editor (written in Haskell).tests
contains the hunit testsintegration-tests
contains integration tests- see section
tests
for more information.
- see section
Development
If you plan to contribute to the project, make sure that your contribution does not break any tests and hlint is happy.
Coding conventions
Though not applied consistently until now, there are some things which would be really NICE to have:
- Set indetations to 2 spaces
- Remove trailing white spaces
- Do not retab/reformat other people's code, especially not in a commit which contains some logical changes as well
- One logical change per commit
- Integrate hlint to your editor of choice and try to stick to the suggestions it makes
- Would be cool, if lines are not longer than 80 characters
Module testing with HUnit
tests
contains a Main.hs
file that runs an HUnit test with a list of test
functions. For each module src/[module-name].hs
of the compiler pipeline
exists a corresponding test file tests/T[module-name].hs
exporting a list of
test functions for the named module. In the Main.hs
file the list that is
tested by HUnit, is concatenated by the exported test lists of all test modules.
Integration tests
Integration tests are stored in integration-tests
in three subdirectories:
passing/
contains tests that are testing already implemented features and that already passed beforefailing/
contains tests that are testing already implemented features but never passedfuture/
contains tests that are testing functionality that will be added in the future
Each test consists of two files. A rail program [test-name].rail
and an
io-file [test-name].io
.
The io-file specifies test cases, i.e. a set of inputs with the expected corresponding outputs of the rail-program.
Input and output as well as the test cases themselves are separated by a hash tag. If an input has more than one value, they are separated by a newline. Consider a rail program adding two numbers and printing the result (without any newlines). A corresponding io-file with two test cases could look as follows:
3
5
#
8
#
21
56
#
77
NOTE 1: printed newlines have to be stated explicitly. Consider a hello-world
program printing Hello World\n
(without any input). The io-file has to look
as follows:
#
Hello World\n
NOTE 2: The expected output is only tested against stdout
. If you want to test the output
on stderr
as well, you can add another section to a test case, separated by a single %
line:
This is the input.
#
This is the expected output on stdout.
%
This is the expected output on stderr.
#
Another input.
#
Another stdout output.
NOTE 3: Lines containing only a single %
or #
character always delimit sections as
described above. There is no way to escape them, sorry.
tests/integration_tests.sh
is a script written in bash. It iterates over all
rail programs in passing/
, compiles each of them using the current version of
our rail compiler and retrieves runnable llvm-code, i.e. it already links it
with the stack implementation, etc. For each input/output value, it puts the
input into the llvm-binary and compares the actual output with the current
output. The result will be printed to stdout.
Dependencies / Building the Compiler
- Install cabal (package cabal-install in most distributions)
- Install llvm, versions llvm-3.3 and llvm-3.4 work.
- run
cabal update
- If you don't use llvm-3.4 you manually need to install the corresponding haskell bindings, i.e.:
cabal install llvm-general-3.3.11.2
- Switch to project folder
- Run
cabal install --enable-tests
to install all dependencies and build the project cabal test
to run the tests- Run the compiler with
dist/build/SWPSoSe14/SWPSoSe14 -c -i <Source.rail> -o output
- You still need to link the stack manually if you want to have executables:
llvm-link <compiled.ll> src/RailCompiler/*.ll -o executable
Documentation
You can generate the compiler documentation using cabal haddock --executables
--haddock-options --ignore-all-exports
from the root project directory.
Branching model
Currently, there are several (long-lived) team branches and one main development branch,
master
. The master
branch should always contain something that "works" to
some degree, i. e. it should never break.
All team branches are merged into the master
branch on a regular basis.
Team branches
The following team branches exist. Except for master
, all branches not mentioned
here are to be considered (short-lived) feature branches.
gui
: Contains everything with a graphical user interface, most notably the debugger and the graphical Rail editor.intertarget-code
: Contains code for the backend, for intermediate code generation and for code optimization.preproc-lexer
: Contains code for the preprocessor and lexer components.synsem-analysis
: Contains code for the syntactic/semantic analysis.
Additional Information
For additional information take a look at our wiki pages: https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14/wiki