Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Changed how the pattern-matching stack is built, in the hopes of optimizing ↵ | Eduardo Julian | 2019-05-01 | 2 | -11/+11 | |
| | | | | peeks. | |||||
* | Now inlining the pattern-matching POP and PEEK operations. | Eduardo Julian | 2019-05-01 | 4 | -50/+29 | |
| | ||||||
* | Added support for ECL. | Eduardo Julian | 2019-05-01 | 1 | -0/+9 | |
| | ||||||
* | Turned "sum//get" into an iterative loop. | Eduardo Julian | 2019-05-01 | 2 | -21/+33 | |
| | ||||||
* | Now using "block" instead of "tagbody". | Eduardo Julian | 2019-05-01 | 2 | -50/+33 | |
| | ||||||
* | Forgot to remove the "eval" module. | Eduardo Julian | 2019-05-01 | 1 | -166/+0 | |
| | ||||||
* | The Common Lisp compiler is alive. | Eduardo Julian | 2019-05-01 | 31 | -1858/+1735 | |
| | ||||||
* | Turned all "lux int ???" extensions to "lux i64 ???". | Eduardo Julian | 2019-04-28 | 9 | -98/+83 | |
| | ||||||
* | Turned all "lux frac ???" extensions to "lux f64 ???". | Eduardo Julian | 2019-04-28 | 8 | -76/+76 | |
| | ||||||
* | Specialized array machinery for primitive arrays. | Eduardo Julian | 2019-04-28 | 3 | -81/+226 | |
| | ||||||
* | Moved JVM type machinery to stdlib. | Eduardo Julian | 2019-04-27 | 18 | -486/+522 | |
| | ||||||
* | Moved the modules under "lux/host/" to now be under "lux/target/". | Eduardo Julian | 2019-04-27 | 73 | -64/+68 | |
| | ||||||
* | Re-named "lux/tool/compiler/host" to "lux/target". | Eduardo Julian | 2019-04-27 | 28 | -467/+465 | |
| | ||||||
* | Got rid of the half-baked HTTP client machinery. | Eduardo Julian | 2019-04-27 | 1 | -87/+0 | |
| | ||||||
* | Ported tests for type analysis. | Eduardo Julian | 2019-04-27 | 4 | -112/+96 | |
| | ||||||
* | Refactored the spec a bit better. | Eduardo Julian | 2019-04-26 | 9 | -131/+146 | |
| | ||||||
* | Ported common extensions tests. | Eduardo Julian | 2019-04-26 | 4 | -474/+342 | |
| | ||||||
* | - Ported pattern-matching tests. | Eduardo Julian | 2019-04-26 | 5 | -298/+199 | |
| | | | - Ported function tests. | |||||
* | Ported reference tests. | Eduardo Julian | 2019-04-26 | 5 | -144/+121 | |
| | ||||||
* | WIP: Turning compiler tests into a re-usable specification. | Eduardo Julian | 2019-04-26 | 10 | -217/+273 | |
| | ||||||
* | WIP: PHP compiler. | Eduardo Julian | 2019-04-24 | 43 | -2108/+1975 | |
| | ||||||
* | - Improved debugging machinery. | Eduardo Julian | 2019-04-21 | 3 | -211/+167 | |
| | | | - Now also displaying dynamic values with the help of "lux/debug.representation". | |||||
* | Added short names for special characters. | Eduardo Julian | 2019-04-21 | 1 | -12/+13 | |
| | ||||||
* | Moved the code/syntax parser under "lux/control/parser/". | Eduardo Julian | 2019-04-19 | 61 | -482/+570 | |
| | ||||||
* | Moved the XML parser under "lux/control/parser/". | Eduardo Julian | 2019-04-19 | 3 | -162/+179 | |
| | ||||||
* | Moved the JSON parser under "lux/control/parser/". | Eduardo Julian | 2019-04-19 | 5 | -244/+256 | |
| | ||||||
* | Re-named "lux/data/collection/tree/rose" to "lux/data/collection/tree". | Eduardo Julian | 2019-04-19 | 7 | -22/+18 | |
| | ||||||
* | Moved the (rose) tree parser under "lux/control/parser/". | Eduardo Julian | 2019-04-19 | 3 | -108/+101 | |
| | ||||||
* | Moved the CLI parser under "lux/control/parser/". | Eduardo Julian | 2019-04-19 | 5 | -45/+48 | |
| | ||||||
* | Renamed both "Poly" and "Lexer" to "Parser" in order to normalize naming a bit. | Eduardo Julian | 2019-04-19 | 14 | -164/+167 | |
| | ||||||
* | Moved the text lexers under "lux/control/parser/". | Eduardo Julian | 2019-04-19 | 17 | -113/+124 | |
| | ||||||
* | Extracted the type-parsing machinery into its own module. | Eduardo Julian | 2019-04-19 | 6 | -465/+487 | |
| | ||||||
* | Re-named "lux/tool/compiler/phase/extension/analysis/host.old.lux" to ↵ | Eduardo Julian | 2019-04-19 | 2 | -13/+18 | |
| | | | | "lux/tool/compiler/phase/extension/analysis/jvm.lux". | |||||
* | WIP: Host interop for the new JVM compiler. | Eduardo Julian | 2019-04-18 | 4 | -158/+2279 | |
| | ||||||
* | Improvements and fixes for JVM extensions. | Eduardo Julian | 2019-04-18 | 5 | -357/+347 | |
| | ||||||
* | Fixed a bug where it was possible to write invalid identifiers if they ended ↵ | Eduardo Julian | 2019-04-18 | 1 | -18/+19 | |
| | | | | in the separator character (e.g. "invalid."). | |||||
* | Fixed a bug when generating method calls. | Eduardo Julian | 2019-04-17 | 2 | -16/+40 | |
| | ||||||
* | - Improved error messaging when trying to access an unbound type-parameter ↵ | Eduardo Julian | 2019-04-17 | 2 | -125/+121 | |
| | | | | | during beta-reduction. - Removed the (unused) "var::remove" function. | |||||
* | Simplified the "Order" signature. | Eduardo Julian | 2019-04-17 | 20 | -296/+191 | |
| | ||||||
* | Some adjustments of the stdlib for the new JVM compiler. | Eduardo Julian | 2019-04-17 | 4 | -45/+89 | |
| | ||||||
* | - Made the "open:" and "^open" macros not generate record-patterns, and thus ↵ | Eduardo Julian | 2019-04-17 | 13 | -168/+171 | |
| | | | | | not need (or impose a need on) tags. - The "do" macro for monads also doesn't need tags anymore. | |||||
* | Order for names. | Eduardo Julian | 2019-04-17 | 1 | -0/+19 | |
| | ||||||
* | Pattern-matching can now handle universally quantified sums. | Eduardo Julian | 2019-04-17 | 2 | -27/+40 | |
| | ||||||
* | Now "refreshing" the evaluator every time a new definition is processed. | Eduardo Julian | 2019-04-17 | 4 | -40/+53 | |
| | ||||||
* | Fixed an issue with weird spacing at the end of lines in "lux/time/duration". | Eduardo Julian | 2019-04-17 | 3 | -38/+48 | |
| | ||||||
* | - Re-named the "lux convert ..." extensions to "lux conversion ...". | Eduardo Julian | 2019-04-17 | 4 | -198/+255 | |
| | | | - Fixed some issues with array extensions. | |||||
* | Now using generation for host extensions. | Eduardo Julian | 2019-04-16 | 1 | -11/+18 | |
| | ||||||
* | The "invalid-syntax" can now be parameterized with the formatter for the inputs. | Eduardo Julian | 2019-04-16 | 3 | -19/+15 | |
| | ||||||
* | Made some new-luxc modules "old". | Eduardo Julian | 2019-04-16 | 13 | -835/+774 | |
| | ||||||
* | The old compiler is now identified with "old" instead of "jvm". This should ↵ | Eduardo Julian | 2019-04-16 | 38 | -60/+66 | |
| | | | | help to get old JVM code and new JVM code to coexist without forcing a major rewrite of old compiler code to get it to fit the style of the new JVM compiler code. |