aboutsummaryrefslogtreecommitdiff
path: root/source/lux.lux (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Code compiles again! (although, I had to employ a hack for "fold", as ↵Eduardo Julian2015-03-011-121/+92
| | | | | | function self-calls are broken). Also fixed several small bugs, including the one that caused ".apply" to never make progress (always returned a function with count 0). Also fixed an issue with scopes that caused class-names to be generated improperly.
* [TODO]Eduardo Julian2015-03-011-44/+18
| | | | | - For some reason, when I fail at compilation due to mistaken use of tags/variants, I don't get the right error reported. [Fixes] - Solved a problem where stack values weren't being properly cleaned-up when pattern-matching on variants and branch bodies.
* - Fixed some bugs with pattern matching and macros.Eduardo Julian2015-03-011-21/+63
| | | | | - Simplified the code for handling definitions and macros. - Slightly changed the names of the fields of tuple classes. - Added a (currently empty) optimization phase.
* Almost done with the super refactoring.Eduardo Julian2015-03-011-223/+246
| | | | Codebase still needs to be simplified further, though. Also, an explicit optimization phase, between analysis and compilation, must be established.
* Super refactoring that breaks the system: Part 4Eduardo Julian2015-02-151-1/+16
|
* Super refactoring that breaks the system: Part 2Eduardo Julian2015-02-101-46/+62
|
* Super refactoring that breaks the system: Part 1Eduardo Julian2015-02-101-261/+747
|
* [Working on]Eduardo Julian2015-01-291-109/+150
| | | | | | - The monadic implementation of macros is almost done. - Missing error-handling. [Fixes] - The output folder is now generated on each compiler run to avoid exceptions thrown by the class-loader.
* [Bugs]Eduardo Julian2015-01-291-27/+32
| | | | | | - Fixed the errors in the compiler due to its restructuring as monadic code. - Fixed a bug in the analyser where 'case' forms has "Nothing" as their type. [Refactor] - Now there only one way to raise/fold lambda-bodies.
* [Bug]Eduardo Julian2015-01-281-6/+37
| | | | | - The analyser trying to match function calls first was messing around with variant construction. [Working on] - Monadic macros.
* [Working on]Eduardo Julian2015-01-271-6/+14
| | | | - Huge refactoring of the lux/compiler ns. - No more difference between compiling global lambda definitions vs regular lambdas.
* [Working on]Eduardo Julian2015-01-261-236/+259
| | | - Almost finished rebuilding lambda syntax so it always has local names and only takes 1 argument.
* WARNING: BrokenEduardo Julian2015-01-221-53/+55
| | | | | | | | | | | [Enhancements] - Restructured the lexer a bit. - Restructured the parser a lot. - Changed the syntax a bit. - Module-names are now separated from def-names by a colon (e.g. module/submodule:var) - i+ -> iadd, i- -> isub, i* -> imul, i/ -> idiv - Added a (incomplete) way to annotate defs. Currently, only serves to mark defs as macros. - Removed "import" and "use". "require" is meant to be the way to load modules. - Did some major refactoring, cleaning and upgrading in the analyser. Though there is still some work pending.
* [Bugs]Eduardo Julian2015-01-191-0/+259
- Removed the issue that was causing the compiler to never display the true source of errors. [Enhancements] - Separated the prelude (lux.lux) and utils (util.lux) from the code at test2.lux - The compiler now handles module-separation a bit better [Cleanup] - Removed the unnecessary another.lux [Temporary] - The base classes/interfaces are now assumed to be in the "lux" module, but they must be moved to "lux/host"