aboutsummaryrefslogtreecommitdiff
path: root/source/lux/codata/stream.lux (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-10-04- Removed the Lux source from the repo, as it now belongs to the lux/stdlib ↵Eduardo Julian1-140/+0
package. - Removed de Apacke Commons Compress library, as Lux libraries will now be packaged as .jar files instead of as .tar.gz files. - The compiler no longer packages libraries, as that task will now be left for the build system.
2015-09-16- Changed the name of the \stream macro to \stream&Eduardo Julian1-7/+7
2015-09-15- :: no longer demands prefixes for the struct membersEduardo Julian1-11/+20
- Fixed both lux/control/comonad;be & lux/codata/stream;\stream
2015-09-11- Updated the standard library.Eduardo Julian1-1/+1
2015-09-06- Removed the (unnecessary) lux/meta/macro module.Eduardo Julian1-1/+0
2015-08-31- Found a compromise with the issue of certain definitions clashing with ↵Eduardo Julian1-6/+6
each other when saving the class files in case-insensitive file-systems (https://github.com/LuxLang/lux/issues/8). The names of certain definitions were changed slightly to avoid clashes and the compiler throws an error if the names end up clashing prior to saving the .class file.
2015-08-29- Remove the (unnec) "All'" and "->'" macros.Eduardo Julian1-4/+4
- Improved the "struct" macro so that (once again) it doesn't ask for the prefixes of the members. - Added tests for the lux.reader namespace.
2015-08-29- Added some compiler optimizations.Eduardo Julian1-1/+1
- Removed the (unnecessary) lux/control/dict & lux/control/stack modules. - The "Meta" type is now a record instead of a variant.
2015-08-28- Changed the name of AllT (for-all type) to UnivQ (universal quantification).Eduardo Julian1-4/+4
- UnivQ no longer stores the environment as key-val pairs with Text names, but instead stores it as type-lists with variables accessed via an index through a (updated) BoundT. - UnivQ no longer stores the name of the type-fun, not the name of the type-arg.
2015-08-28Changed the license from EPL to MPL.Eduardo Julian1-7/+4
2015-08-17- Finished turning tags into indices.Eduardo Julian1-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.
2015-08-05- Local vars can now longer have prefixed symbols.Eduardo Julian1-1/+1
2015-08-04- Struct definition no longer required prefixed members (now, it actually ↵Eduardo Julian1-5/+5
prohibits them).
2015-08-04- Renamed the Syntax type to AST.Eduardo Julian1-1/+1
- Created the lux/meta/ast module.
2015-08-02- Added a module for hashing.Eduardo Julian1-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.
2015-07-31- Did some refactoring of the standard library.Eduardo Julian1-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.
2015-07-25- The output directory is now being used as the cache.Eduardo Julian1-0/+0
- "input" has been renamed as "source" and "output" has been renamed as "target".
2015-07-19- Some bug fixes.Eduardo Julian1-45/+115
- More additions to the standard library.
2015-07-12- Added the beginnings of the standard library.Eduardo Julian1-0/+63
- Fixed several bugs.