aboutsummaryrefslogtreecommitdiff
path: root/src/lang.clj (follow)
Commit message (Collapse)AuthorAgeFilesLines
* The language officially has a name: Lux (stylized as "lux").Eduardo Julian2015-01-031-54/+0
|
* The language now supports macros.Eduardo Julian2015-01-031-167/+14
|
* Pattern matching compiler now generates optimized code.Eduardo Julian2015-01-021-258/+153
|
* Reimplemented basic pattern-matching.Eduardo Julian2014-12-261-1/+272
|
* The machinery is in place to allow loading modules at runtime.Eduardo Julian2014-12-211-1/+1
|
* * Java interop is almost finished.Eduardo Julian2014-12-201-1/+0
| | | % _. and _.. syntax has been replaced with ::
* Now the language has full closures.Eduardo Julian2014-12-191-1/+0
|
* Almost finished implementing closures.Eduardo Julian2014-12-191-1/+1
|
* All the classes that used to be generated per function have now been folded ↵Eduardo Julian2014-12-181-8/+3
| | | | into one.
* Added some pseudo pattern-matching (only extracting simple data, without ↵Eduardo Julian2014-12-161-2/+1
| | | | exploring inner structure or doing any testing).
* + Strings now have escape characters.Eduardo Julian2014-12-161-2/+4
| | | | + Characters have been added. % Unicode support is missing...
* Added ints and floats.Eduardo Julian2014-12-151-2/+1
|
* Added "do" expressions.Eduardo Julian2014-12-151-1/+0
|
* Added lambdas! (not yet real closures, but coming soon...)Eduardo Julian2014-12-151-11/+15
|
* Added tuples.Eduardo Julian2014-12-151-92/+1
|
* Now defining functions as classes inheriting Function.Eduardo Julian2014-12-141-1/+19
|
* Added module imports.Eduardo Julian2014-12-141-1/+1
|
* Added Java class imports.Eduardo Julian2014-12-141-4/+49
|
* + Removed "module" special form.Eduardo Julian2014-12-131-7/+7
| | | + Fixed a bug that was preventing multi-line comments from being truly multi-line.
* Added let (local vars).Eduardo Julian2014-12-121-1/+0
|
* Analyser can now distinguish between local and global vars & point the ↵Eduardo Julian2014-12-121-2/+2
| | | | compiler to the right place to look for data.
* + Added an analysis phase.Eduardo Julian2014-12-111-1/+30
| | | + Added a type-system.
* Now compiling tagged values.Eduardo Julian2014-12-091-1/+4
|
* Now can define constants in modules.Eduardo Julian2014-12-091-4/+2
|
* Can now define inside modules: simple classes with public fields.Eduardo Julian2014-12-081-0/+3
|
* Added modules.Eduardo Julian2014-12-081-4/+20
|
* Cleaned up a lot of useless code and removed the state monad from the ↵Eduardo Julian2014-12-071-8/+6
| | | | compilation phase (the ASM library already works as a state monad).
* Added some super-basic type-system.Eduardo Julian2014-12-021-1/+2
|
* Doing some basic compilation.Eduardo Julian2014-12-011-0/+26