aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/analyser/structure.lux (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-10-31- Migrated the format of analysis nodes from a custom data-type, to just ↵Eduardo Julian1-1/+1
Code nodes.
2017-10-29- Fixed some bugs.Eduardo Julian1-31/+40
- Improved error reporting. - Implemented macro-expansion (for JVM). - Implemented "let" compilation.
2017-10-26- WIP: Wiring everything to get the compiler to work fully.Eduardo Julian1-9/+15
- Fixed a bug when combining field/method/class modifiers.
2017-10-18- Updated to the latest changes in stdlib.Eduardo Julian1-32/+32
2017-10-11- Migrated new-luxc to latest version of stdlib.Eduardo Julian1-52/+51
- Some refactoring.
2017-10-05- Added tests for type-checking and type-coercion.Eduardo Julian1-2/+31
- Implemented "eval". - Fixed bugs when analysing variants and tuples.
2017-09-08- Re-named luxc/env to luxc/scope.Eduardo Julian1-3/+3
2017-09-05- Updated new compiler's code to the recent changes in the language.Eduardo Julian1-28/+28
- WIP: Some other changes/additions to the new compiler.
2017-06-27- Adapted compiler to the latest stdlib changes.Eduardo Julian1-4/+4
2017-05-31- Implemented some synthesis algorithms and tests for primitives, ↵Eduardo Julian1-51/+4
structures, procedures and function application. - Some refactoring.
2017-05-30- Documented the analysis phase.Eduardo Julian1-232/+197
- Some refactoring. - Removed singleton variants.
2017-05-30- Some refactoring.Eduardo Julian1-11/+10
2017-05-29- Fixes for pattern-matching (case) analysis.Eduardo Julian1-15/+18
- Small refactorings. - Improved common procedures analysis. - Can now handle tagged structures (variants & records). - Tests for pattern-matching, functions (definition & application), and common procedures.
2017-05-20- Simplified the analytic model of tuples into products, and variants into sums.Eduardo Julian1-67/+89
2017-05-20WIPEduardo Julian1-71/+162
- Added analysis and type-inference for records and tagged variants. - Extracted inference code to a separate module for better reuse.
2017-05-20- Some refactoring.Eduardo Julian1-3/+2
2017-05-19- WIP: Added pattern-matching (case) analysis.Eduardo Julian1-1/+66
2017-05-17- Renamed "Error" to "Result".Eduardo Julian1-2/+1
2017-05-15WIPEduardo Julian1-0/+172
- Simplified the Analysis type, by removing all meta-data. - Added analysis of function calls. - Added analysis of common Lux procedures. - Lots of refactoring.