aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/analyser/procedure (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Re-organized analysis.Eduardo Julian2017-10-312-1659/+0
|
* - Migrated the format of analysis nodes from a custom data-type, to just ↵Eduardo Julian2017-10-312-34/+41
| | | | Code nodes.
* - Now, all special forms are handled as procedures.Eduardo Julian2017-10-312-37/+103
| | | - "lux case" now takes its branches as a non-empty record.
* - Fixed some compiler tests.Eduardo Julian2017-10-261-1/+1
|
* - Fixed tests for analysis of common procedures.Eduardo Julian2017-10-261-1/+2
|
* - Updated new compiler to latest version of stdlib.Eduardo Julian2017-10-211-19/+19
|
* - Compilation for method invocation.Eduardo Julian2017-10-191-4/+9
|
* - Method invocation analysis.Eduardo Julian2017-10-181-57/+119
|
* - Updated to the latest changes in stdlib.Eduardo Julian2017-10-182-116/+116
|
* - WIP: Method analysis.Eduardo Julian2017-10-151-5/+317
|
* - Compilation and tests for fields.Eduardo Julian2017-10-141-15/+26
|
* - Compilation and tests for arrays.Eduardo Julian2017-10-121-3/+3
|
* - Compilation and tests for arithmetic, bit-wise operations and order.Eduardo Julian2017-10-121-7/+2
|
* - Migrated new-luxc to latest version of stdlib.Eduardo Julian2017-10-112-71/+72
| | | - Some refactoring.
* - Improved polymorphism and inheritance support.Eduardo Julian2017-10-091-93/+174
| | | - Added casting support for automatic boxing/unboxing.
* - WIP: Added support for inheritance.Eduardo Julian2017-10-081-104/+127
|
* - WIP: JVM field analysis.Eduardo Julian2017-10-082-59/+365
|
* - Added tests for host procedures.Eduardo Julian2017-10-071-104/+118
|
* - WIP: JVM host procedure analysis.Eduardo Julian2017-10-042-171/+611
|
* - Updated new compiler's code to the recent changes in the language.Eduardo Julian2017-09-051-45/+45
| | | - WIP: Some other changes/additions to the new compiler.
* - Tested the compilation for "nat" procedures.Eduardo Julian2017-07-031-32/+32
| | | | - Expanded the runtime. - Some bug-fixes and refactorings.
* - WIP: Added generation for common procedures.Eduardo Julian2017-06-301-3/+2
|
* - Documented the analysis phase.Eduardo Julian2017-05-301-0/+3
| | | | - Some refactoring. - Removed singleton variants.
* - Fixes for pattern-matching (case) analysis.Eduardo Julian2017-05-291-0/+333
- Small refactorings. - Improved common procedures analysis. - Can now handle tagged structures (variants & records). - Tests for pattern-matching, functions (definition & application), and common procedures.