aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/generator (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Re-organized code-generation, and re-named it "translation".Eduardo Julian2017-11-0113-3157/+0
|
* - Re-organized synthesis.Eduardo Julian2017-11-018-8/+0
|
* - Re-organized analysis.Eduardo Julian2017-10-318-9/+1
|
* - Migrated the format of analysis nodes from a custom data-type, to just ↵Eduardo Julian2017-10-315-21/+20
| | | | Code nodes.
* - Moved the "host" directory from under "generator" to under "luxc".Eduardo Julian2017-10-3117-993/+55
|
* - Re-named "expr" module to "expression".Eduardo Julian2017-10-312-3/+1
|
* - Added "^code" pattern-matching macro for easier handling of code.Eduardo Julian2017-10-301-10/+10
|
* - Migrated the format of synthesis nodes from a custom data-type, to just ↵Eduardo Julian2017-10-304-122/+135
| | | | Code nodes.
* - Fixed some bugs.Eduardo Julian2017-10-299-174/+244
| | | | | - Improved error reporting. - Implemented macro-expansion (for JVM). - Implemented "let" compilation.
* - Fixed remaining tests in compiler.Eduardo Julian2017-10-261-41/+52
| | | - Now showing stack-traces for errors on JVM.
* - Fixed some compiler tests.Eduardo Julian2017-10-262-20/+52
|
* - WIP: Wiring everything to get the compiler to work fully.Eduardo Julian2017-10-267-44/+150
| | | - Fixed a bug when combining field/method/class modifiers.
* - Compilation for method invocation.Eduardo Julian2017-10-192-22/+182
|
* - Updated to the latest changes in stdlib.Eduardo Julian2017-10-1816-139/+137
|
* - Compilation and tests for fields.Eduardo Julian2017-10-141-1/+156
|
* - Compilation for object-based procedures.Eduardo Julian2017-10-142-5/+84
|
* - Compilation and tests for arrays.Eduardo Julian2017-10-125-19/+129
|
* - Compilation and tests for arithmetic, bit-wise operations and order.Eduardo Julian2017-10-122-16/+185
|
* - Compilation and tests for primitive conversions.Eduardo Julian2017-10-124-25/+150
|
* - Migrated new-luxc to latest version of stdlib.Eduardo Julian2017-10-119-153/+147
| | | - Some refactoring.
* - Simplified "eval".Eduardo Julian2017-10-051-3/+2
|
* - Function generation.Eduardo Julian2017-09-1912-62/+546
|
* - Added pattern-matching compilation.Eduardo Julian2017-09-174-31/+411
|
* - Re-named luxc/env to luxc/scope.Eduardo Julian2017-09-081-2/+2
|
* - Re-named "jvm-import" to "import".Eduardo Julian2017-09-088-43/+43
|
* - Updated new compiler's code to the recent changes in the language.Eduardo Julian2017-09-059-228/+359
| | | - WIP: Some other changes/additions to the new compiler.
* - Now using strict floating point math on the JVM.Eduardo Julian2017-09-041-9/+11
|
* - Tested the compilation for "nat" procedures.Eduardo Julian2017-07-034-155/+257
| | | | - Expanded the runtime. - Some bug-fixes and refactorings.
* - Adjusted compiler to the new lack of Char type.Eduardo Julian2017-07-025-6/+4
| | | - WIP: PM/case synthesis.
* - WIP: Added generation for common procedures.Eduardo Julian2017-06-3010-42/+1115
|
* - Heavy refactoring.Eduardo Julian2017-06-1411-305/+660
|
* - Renamed the "compilation" phase as the "generation" phase.Eduardo Julian2017-06-128-0/+568
- Implemented compilation of primitives. - Implemented compilation of structures.