aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/analyser/function.lux (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Re-organized analysis.Eduardo Julian2017-10-311-111/+0
|
* - Migrated the format of analysis nodes from a custom data-type, to just ↵Eduardo Julian2017-10-311-6/+10
| | | | Code nodes.
* - Fixed some bugs.Eduardo Julian2017-10-291-4/+9
| | | | | - Improved error reporting. - Implemented macro-expansion (for JVM). - Implemented "let" compilation.
* - Fixed some type-checking errors.Eduardo Julian2017-10-221-12/+12
|
* - Updated to the latest changes in stdlib.Eduardo Julian2017-10-181-9/+9
|
* - Migrated new-luxc to latest version of stdlib.Eduardo Julian2017-10-111-22/+23
| | | - Some refactoring.
* - Re-named luxc/env to luxc/scope.Eduardo Julian2017-09-081-3/+3
|
* - Adapted compiler to the latest stdlib changes.Eduardo Julian2017-06-271-10/+8
|
* - Implemented some synthesis algorithms and tests for primitives, ↵Eduardo Julian2017-05-311-4/+1
| | | | | structures, procedures and function application. - Some refactoring.
* - Documented the analysis phase.Eduardo Julian2017-05-301-3/+5
| | | | - Some refactoring. - Removed singleton variants.
* - Fixes for pattern-matching (case) analysis.Eduardo Julian2017-05-291-3/+3
| | | | | | - Small refactorings. - Improved common procedures analysis. - Can now handle tagged structures (variants & records). - Tests for pattern-matching, functions (definition & application), and common procedures.
* WIPEduardo Julian2017-05-201-93/+15
| | | | - Added analysis and type-inference for records and tagged variants. - Extracted inference code to a separate module for better reuse.
* - WIP: Added pattern-matching (case) analysis.Eduardo Julian2017-05-191-71/+66
|
* - Renamed "Error" to "Result".Eduardo Julian2017-05-171-2/+1
|
* WIPEduardo Julian2017-05-151-0/+188
- Simplified the Analysis type, by removing all meta-data. - Added analysis of function calls. - Added analysis of common Lux procedures. - Lots of refactoring.