aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - More refactoring.Eduardo Julian2017-11-135-72/+53
|
* - Refactoring.Eduardo Julian2017-11-1315-490/+481
| | | | - Now giving type checking/inference a higher priority. - Better error messages.
* - Improved handling of type variables.Eduardo Julian2017-11-133-19/+64
|
* - Type-vars no longer get deleted.Eduardo Julian2017-11-1310-102/+98
| | | - Fixed some bugs.
* - Fixed some bugs.Eduardo Julian2017-11-127-133/+151
| | | | - Improved error reporting. - Optimized pattern-matching a bit.
* - Fixed the tests.Eduardo Julian2017-11-099-64/+135
| | | | - Fixed a few bugs. - Can now translate recursion.
* - Fixed some bugs.Eduardo Julian2017-11-067-35/+60
|
* - Fixed some bugs.Eduardo Julian2017-11-067-76/+56
|
* - Minor refactorings.Eduardo Julian2017-11-0116-195/+184
| | | | - Fixed some bugs. - Enabled macro-expansion for statements.
* - Re-organized code-generation, and re-named it "translation".Eduardo Julian2017-11-0115-4/+3336
|
* - Re-organized synthesis.Eduardo Julian2017-11-015-0/+566
|
* - Re-named "parser" to "syntax".Eduardo Julian2017-10-311-0/+0
|
* - Re-organized analysis.Eduardo Julian2017-10-3114-0/+3801
|
* - Migrated the format of analysis nodes from a custom data-type, to just ↵Eduardo Julian2017-10-313-51/+118
| | | | Code nodes.
* - Migrated the format of synthesis nodes from a custom data-type, to just ↵Eduardo Julian2017-10-301-36/+2
| | | | Code nodes.
* - Function generation.Eduardo Julian2017-09-191-1/+1
|
* - Updated new compiler's code to the recent changes in the language.Eduardo Julian2017-09-052-4/+4
| | | - WIP: Some other changes/additions to the new compiler.
* - Renamed "#Relative" to "#Variable" and "#Absolute" to "#Definition".Eduardo Julian2017-07-021-3/+3
|
* - Adjusted compiler to the new lack of Char type.Eduardo Julian2017-07-022-10/+6
| | | - WIP: PM/case synthesis.
* - Added loop synthesis.Eduardo Julian2017-06-091-4/+6
| | | - Some refactoring.
* - Now optimizing functions.Eduardo Julian2017-06-061-3/+5
|
* - Implemented some synthesis algorithms and tests for primitives, ↵Eduardo Julian2017-05-312-6/+85
| | | | | structures, procedures and function application. - Some refactoring.
* - Some refactoring.Eduardo Julian2017-05-302-18/+14
|
* - Fixes for pattern-matching (case) analysis.Eduardo Julian2017-05-292-5/+7
| | | | | | - Small refactorings. - Improved common procedures analysis. - Can now handle tagged structures (variants & records). - Tests for pattern-matching, functions (definition & application), and common procedures.
* - Simplified the analytic model of tuples into products, and variants into sums.Eduardo Julian2017-05-201-2/+3
|
* - Some refactoring.Eduardo Julian2017-05-203-6/+3
|
* - WIP: Added pattern-matching (case) analysis.Eduardo Julian2017-05-192-2/+2
|
* - Renamed "Error" to "Result".Eduardo Julian2017-05-171-2/+2
|
* WIPEduardo Julian2017-05-151-11/+3
| | | | | | - Simplified the Analysis type, by removing all meta-data. - Added analysis of function calls. - Added analysis of common Lux procedures. - Lots of refactoring.
* - Added tests for some kinds of analysis.Eduardo Julian2017-05-093-0/+66
- WIP: Porting more code.