aboutsummaryrefslogtreecommitdiff
path: root/src/lang/analyser.clj (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Added ints and floats.Eduardo Julian2014-12-151-1/+15
|
* Added "do" expressions.Eduardo Julian2014-12-151-0/+6
|
* Added lambdas! (not yet real closures, but coming soon...)Eduardo Julian2014-12-151-10/+62
|
* Added tuples.Eduardo Julian2014-12-151-0/+6
|
* Added module imports.Eduardo Julian2014-12-141-6/+25
|
* Added Java class imports.Eduardo Julian2014-12-141-3/+21
|
* + Removed "module" special form.Eduardo Julian2014-12-131-7/+1
| | | + Fixed a bug that was preventing multi-line comments from being truly multi-line.
* Added let (local vars).Eduardo Julian2014-12-121-0/+13
|
* Analyser can now distinguish between local and global vars & point the ↵Eduardo Julian2014-12-121-26/+32
| | | | compiler to the right place to look for data.
* + Added an analysis phase.Eduardo Julian2014-12-111-0/+191
+ Added a type-system.