aboutsummaryrefslogtreecommitdiff
path: root/source/lux.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-3303/+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-30- Changed the license in the project.clj file (had forgotten until now).Eduardo Julian1-9/+32
- Some minor updates to the standard library. - Some minor bug fixes & improvements. - program.lux has been removed.
2015-09-29- Returned to old format of type-environments where odds are arguments & ↵Eduardo Julian1-43/+43
evens are quantifiers.
2015-09-26- Added support for Java annotations.Eduardo Julian1-2/+2
2015-09-26- Both method declarations & method definitions in classes can now include ↵Eduardo Julian1-1/+1
declarations of which exceptions they throw.
2015-09-16- Now the file-name & the line numbers are stored inside the .class files ↵Eduardo Julian1-21/+14
for debug info.
2015-09-15- :: no longer demands prefixes for the struct membersEduardo Julian1-2/+2
- Fixed both lux/control/comonad;be & lux/codata/stream;\stream
2015-09-15- The Macro type now flows from lux.lux into the compiler, to achieve a ↵Eduardo Julian1-20/+3
perfect match without having the write the type in 2 places. - Made the "Host" type fully opaque to avoid letting users manipulate instances.
2015-09-15- Compiler now takes into consideration exceptions that can be thrown by ↵Eduardo Julian1-43/+43
constructors. - Changed the order of parameters in UnivQ & ExQ (even params are now arguments & odd params are now the UnivQ/ExQ types).
2015-09-12- Added exhaustiveness testing for exception-handling code.Eduardo Julian1-2/+5
- Added some optimizations for using List & Maybe within the compiler.
2015-09-12- Primitive data-types can now be parameterized by other types.Eduardo Julian1-20/+23
2015-09-11- Updated the standard library.Eduardo Julian1-141/+30
2015-09-09- Added type inference for functions.Eduardo Julian1-22/+24
- Fixed a bug wherein the "case" macro ignored tokens when receiving uneven inputs.
2015-09-06- Added the (untested) inference of tuple destructuring.Eduardo Julian1-76/+67
- Removed several (unnecessary) type annotations.
2015-09-06- Added type-inference when constructing tuples.Eduardo Julian1-65/+61
2015-09-06- Removed the (unnecessary) lux/meta/macro module.Eduardo Julian1-44/+78
2015-09-06- Expanded the standard library.Eduardo Julian1-8/+8
- Fixed some minor bugs. - Added the updated code for the parser (forgot to add it to a previous commit).
2015-09-01- Fixed the implementation of the Rec macro, which forgot to do application ↵Eduardo Julian1-60/+111
on Void to achieve "recursion". - Introduced ExQ types into the type-system (still pending work on inference).
2015-09-01- Added a macro to write recursive types.Eduardo Julian1-84/+112
- Corrected some code that still involved the old names for the list macros. - Corrected some code in the pattern-matcher analyser to it fails properly when encountering invalid pattern-syntax.
2015-08-31- Found a compromise with the issue of certain definitions clashing with ↵Eduardo Julian1-258/+258
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-30- Removed the (now obsolete) `' macro.Eduardo Julian1-376/+413
- Implemented hygienic macros by adding global symbol resolution inside the ` macro.
2015-08-29- Remove the (unnec) "All'" and "->'" macros.Eduardo Julian1-145/+146
- 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-168/+174
- Removed the (unnecessary) lux/control/dict & lux/control/stack modules. - The "Meta" type is now a record instead of a variant.
2015-08-29- Removed the (unnecessary) lux/data/cont module.Eduardo Julian1-4/+41
- Removed the (unnecessary) lux/data/error module and moved it's structures to lux/data/either. - Implemented the \slots destructurer for records. - Implemented quicksort for lists as the "sort" function in lux/data/list. - Added tags for the Cursor type.
2015-08-28- Changed the name of AllT (for-all type) to UnivQ (universal quantification).Eduardo Julian1-426/+456
- 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-28The environments of AllT types are no longer stored inside a Maybe.Eduardo Julian1-29/+24
2015-08-28Changed the license from EPL to MPL.Eduardo Julian1-7/+4
2015-08-28Due to several performance issues and my inability to optimize them away due ↵Eduardo Julian1-445/+440
to too many corner cases, I decided the abandon the path towards a more mathematical implementation of tuples & variants.
2015-08-23- Restructuring how sums & products work [part 3]Eduardo Julian1-118/+134
2015-08-23- Restructuring how sums & products work [part 2]Eduardo Julian1-72/+82
2015-08-23- Restructuring how sums & products work [part 1]Eduardo Julian1-255/+234
2015-08-17- Finished turning tags into indices.Eduardo Julian1-336/+416
- 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-16Introduced named types (#NamedT Ident Type).Eduardo Julian1-194/+235
2015-08-16Unified tuples & records.Eduardo Julian1-179/+152
2015-08-16- Some clean-up of needless code.Eduardo Julian1-171/+105
- some adjustments to the new format for types.
2015-08-12- Changing tags so they're actually indices (part 4). Eduardo Julian1-23/+4
- Bug fixes and adjustments.
2015-08-12- Changing tags so they're actually indices (part 3). Eduardo Julian1-50/+58
- Added several bug fixes - Changed "Reader" to "Source" and "HostState" to "Host" in lux.lux - Set up indexing of records via tags. - Added lux.analyser.record namespace. - Removed some (now) unnecessary code for working with records. - Added the license (can't believe I missed it for so long.)
2015-08-10- Changing tags so they're actually indices (part 2).Eduardo Julian1-4/+4
- Fixed some bugs. - Now pattern-matching on variants works with indices, rather than text tags.
2015-08-10- Changing tags so they're actually indices (part 1).Eduardo Julian1-118/+190
- Fixed a bug regarding type coercion (type-checking was ocurring unnecessarily). - Fixed another bug regarding Local/Global variables.
2015-08-05- Local vars can now longer have prefixed symbols.Eduardo Julian1-104/+116
2015-08-05- The compiler now stores the cursor of the last analysed AST in order to ↵Eduardo Julian1-12/+24
avoid the problem of error ocurring "nowhere" (at ["" -1 -1]).
2015-08-04- Struct definition no longer required prefixed members (now, it actually ↵Eduardo Julian1-227/+242
prohibits them).
2015-08-04- Renamed the Syntax type to AST.Eduardo Julian1-158/+158
- Created the lux/meta/ast module.
2015-08-04- Added a macro for exporting definitions (to not depend on the #export tag ↵Eduardo Julian1-19/+35
on definitions). - The "open" and "using" macros now work recursively on records.
2015-08-03- Type definitions inside the compiler data now hold the type itself.Eduardo Julian1-7/+17
- Value definitions inside the compiler data now hold the value itself. - Fixed a few bugs.
2015-08-02- Added a module for hashing.Eduardo Julian1-221/+340
- 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-504/+611
- 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-29- lux;using no longer prefixes variables.Eduardo Julian1-2/+2
- Fixed several bugs with host (JVM) interop. - Now packaging everything in a .jar file ("program.jar").
2015-07-26- Changed the name of lux/host/java to lux/host/jvmEduardo Julian1-13/+14
- Completed lux/host/jvm - Modified (slightly) the syntax used in several host (JVM) special forms. - The "defsyntax" macro now binds all of the arguments it receives inside a variable named "tokens".
2015-07-26- Fixed a pattern-matching error where generalizations of types ↵Eduardo Julian1-39/+78
(universal-quantification / AllT) was not being taken into account properly when destructuring. - Fixed a compiler error wherein the types of definitions didn't generate (correctly) the structures necessary for storage inside the class _meta(data) field. - Improved both the "open" and "import" macros with extra features.