aboutsummaryrefslogtreecommitdiff
path: root/input/program.lux (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-07-25- The output directory is now being used as the cache.Eduardo Julian1-48/+0
- "input" has been renamed as "source" and "output" has been renamed as "target".
2015-07-19- Added a few more modules.Eduardo Julian1-1/+3
- Added some type-tags to avoid reflection inside the compiler.
2015-07-19Added copyright notice on all files that missed it.Eduardo Julian1-0/+8
2015-07-19- Some bug fixes.Eduardo Julian1-10/+20
- More additions to the standard library.
2015-07-12- Added the beginnings of the standard library.Eduardo Julian1-13/+26
- Fixed several bugs.
2015-06-20- The directory for source-code is now named "input".Eduardo Julian1-1/+1
- Implemented module-caching to avoid the waiting too much during program compilation.
2015-05-27- _jvm_program now relies on the (IO (,)) type.Eduardo Julian1-4/+1
- The command-line params argument in jvm_program is now transformed from a String array into (List Text).
2015-05-22- Corrected the indentation issues in the lux files.Eduardo Julian1-4/+4
- Temporarily reverted back to forward apply-analysis. - Fixed an error in lux.base/show-ast. - Reader now only returns a tuple instead of a full-blown #Meta variant. - Reader now doesn't cut the strings that it reads. Instead, the "cursor" just moves around, indicating where to read. - Inlined some calculations that previously relied on try-all%.
2015-05-14- Removed the apparently unnecessary total-locals.Eduardo Julian1-1/+1
2015-05-10- Switched to the new prefix convention for both lux's special forms and the ↵Eduardo Julian1-5/+5
host's. - Made a few optimizations to speed-up the now slowed-down compiler.
2015-05-10- Now analysing function-application backwards.Eduardo Julian1-3/+3
2015-05-04- Added the LuxVar type to properly specify the type of environment bindings.Eduardo Julian1-0/+6
- Implemented "using". - Implemented jvm-program. - Corrected some primitive (un)wrapping errors in lux.compiler.host. - jvm-program is now scoped to enable local variables. - The types of definitions are now stored within the module dictionary. - Added a "main" method that just compiles program.lux.
2015-05-04- Added alias-lux to import lux.lux definitions.Eduardo Julian1-0/+12
- Fixed a few bugs both in lux.lux & the compiler. - Added exports to the language.