aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/analyser (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Re-organized analysis.Eduardo Julian2017-10-3112-3050/+0
|
* - Migrated the format of analysis nodes from a custom data-type, to just ↵Eduardo Julian2017-10-318-112/+139
| | | | Code nodes.
* - Now, all special forms are handled as procedures.Eduardo Julian2017-10-313-40/+106
| | | - "lux case" now takes its branches as a non-empty record.
* - Fixed some bugs.Eduardo Julian2017-10-295-111/+185
| | | | | - Improved error reporting. - Implemented macro-expansion (for JVM). - Implemented "let" compilation.
* - Fixed some compiler tests.Eduardo Julian2017-10-261-1/+1
|
* - Fixed tests for analysis of common procedures.Eduardo Julian2017-10-261-1/+2
|
* - WIP: Wiring everything to get the compiler to work fully.Eduardo Julian2017-10-261-9/+15
| | | - Fixed a bug when combining field/method/class modifiers.
* - Fixed some type-checking errors.Eduardo Julian2017-10-221-12/+12
|
* - Updated new compiler to latest version of stdlib.Eduardo Julian2017-10-212-21/+21
|
* - 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-1812-260/+260
|
* - 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-1111-240/+244
| | | - 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
|
* - Added tests for type-checking and type-coercion.Eduardo Julian2017-10-051-2/+31
| | | | - Implemented "eval". - Fixed bugs when analysing variants and tuples.
* - WIP: JVM host procedure analysis.Eduardo Julian2017-10-043-176/+622
|
* - Re-named luxc/env to luxc/scope.Eduardo Julian2017-09-084-11/+11
|
* - Replaced the term "total" with "exhaustive".Eduardo Julian2017-09-072-28/+28
|
* - Updated new compiler's code to the recent changes in the language.Eduardo Julian2017-09-056-100/+100
| | | - 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.
* - Renamed "#Relative" to "#Variable" and "#Absolute" to "#Definition".Eduardo Julian2017-07-021-2/+2
|
* - Adjusted compiler to the new lack of Char type.Eduardo Julian2017-07-023-4/+1
| | | - WIP: PM/case synthesis.
* - WIP: Added generation for common procedures.Eduardo Julian2017-06-301-3/+2
|
* - Adapted compiler to the latest stdlib changes.Eduardo Julian2017-06-274-18/+16
|
* - Added loop synthesis.Eduardo Julian2017-06-091-4/+4
| | | - Some refactoring.
* - Implemented some synthesis algorithms and tests for primitives, ↵Eduardo Julian2017-05-312-55/+5
| | | | | structures, procedures and function application. - Some refactoring.
* - Documented the analysis phase.Eduardo Julian2017-05-308-500/+641
| | | | - Some refactoring. - Removed singleton variants.
* - Some refactoring.Eduardo Julian2017-05-302-40/+38
|
* - Fixes for pattern-matching (case) analysis.Eduardo Julian2017-05-297-366/+381
| | | | | | - Small refactorings. - Improved common procedures analysis. - Can now handle tagged structures (variants & records). - Tests for pattern-matching, functions (definition & application), and common procedures.
* - Renamed ^=> to ^multi.Eduardo Julian2017-05-241-8/+8
|
* - Simplified the analytic model of tuples into products, and variants into sums.Eduardo Julian2017-05-202-68/+90
|
* WIPEduardo Julian2017-05-204-166/+269
| | | | - Added analysis and type-inference for records and tagged variants. - Extracted inference code to a separate module for better reuse.
* - Some refactoring.Eduardo Julian2017-05-203-19/+32
|
* - WIP: Added pattern-matching (case) analysis.Eduardo Julian2017-05-194-75/+580
|
* - Renamed "Error" to "Result".Eduardo Julian2017-05-173-6/+3
|
* WIPEduardo Julian2017-05-159-451/+828
| | | | | | - Simplified the Analysis type, by removing all meta-data. - Added analysis of function calls. - Added analysis of common Lux procedures. - Lots of refactoring.
* - WIP: Function analysis.Eduardo Julian2017-05-141-1/+143
|
* - Added tests for some kinds of analysis.Eduardo Julian2017-05-093-32/+30
| | | - WIP: Porting more code.
* - Renamed "AST" to "Code".Eduardo Julian2017-05-071-8/+8
|
* - Removed "T" suffix from Type's tags.Eduardo Julian2017-05-072-6/+6
|
* - WIP: Implemented more functionality.Eduardo Julian2017-05-032-0/+333
- Lots of refactorings.