aboutsummaryrefslogtreecommitdiff
path: root/source/lux/codata/stream.lux (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Changed the license from EPL to MPL.Eduardo Julian2015-08-281-7/+4
|
* - Finished turning tags into indices.Eduardo Julian2015-08-171-4/+4
| | | | | | | - As an unexpected bonus, the compiler has become 2.5x faster. - Fixed some minor bugs. - Tag declarations now include associated types. - Tag declarations info is now stored twice (one from the perspective of tags, the other from the perspective of types). - Changed the named of the "types" member of the Compiler type, to "type-vars" to avoid collision with the "types" member of the Module type.
* - Local vars can now longer have prefixed symbols.Eduardo Julian2015-08-051-1/+1
|
* - Struct definition no longer required prefixed members (now, it actually ↵Eduardo Julian2015-08-041-5/+5
| | | | prohibits them).
* - Renamed the Syntax type to AST.Eduardo Julian2015-08-041-1/+1
| | | - Created the lux/meta/ast module.
* - Added a module for hashing.Eduardo Julian2015-08-021-1/+2
| | | | | | | | - Refactored the standard library a bit. - Implemented the "loop" macro. - Added the expected type of expressions as a field in the compiler state. - Added syntactic sugar for using tuples with variants, in order to minimize the usage of brackets to delimit the contents of data-structures. - Fixed a bug wherein "macro-expand" was behaving like "macro-expand-all", and added a separate implementation for "macro-expand-all". - Fixed a few bugs.
* - Did some refactoring of the standard library.Eduardo Julian2015-07-311-5/+6
| | | | | | | | - Introduced 2 new modules: lux/data/tuple & lux/codata/function - Now doing safe reading of files. - Took the "let", "lambda" & "def" macros to their ultimate form. - Added some macros for doing better JVM interop. - Fixed a bug when compiling comparisons for doubles. - Changed the order in which arguments are compiled for all arithmetic operations, as the order is reversed (from the conventional order) in the JVM bytecode.
* - The output directory is now being used as the cache.Eduardo Julian2015-07-251-0/+133
- "input" has been renamed as "source" and "output" has been renamed as "target".