aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux.lux (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - Removed "T" suffix from Type's tags.Eduardo Julian2017-05-071-373/+373
|
* - Fully implemented Deg encoding/decoding in pure Lux.Eduardo Julian2017-05-071-7/+4
| | | - No longer relying in LuxRT-supported implementations.
* - Removed the "Debug" compiler mode.Eduardo Julian2017-05-041-13/+9
|
* - Removed the "S" suffix from AST tags.Eduardo Julian2017-05-031-402/+402
|
* - Changes the types of a few compiler-state components.Eduardo Julian2017-05-031-9/+6
|
* - Changed the way Scope works, to make it independent from the notion of ↵Eduardo Julian2017-05-011-14/+29
| | | | | Analysis, and make it easier to port to the new re-written compiler. - Fixed a type-bug when asserting whether a def is being re-defined.
* - Renamed fields of scopes.Eduardo Julian2017-04-301-13/+13
|
* - Updated the compiler's type-checking context to match it with lux/type/check.Eduardo Julian2017-04-301-16/+36
|
* - Small refactorings and fixes.Eduardo Julian2017-04-301-28/+35
| | | - Added <|. macro.
* - Simplified some of the documentation and error messages.Eduardo Julian2017-04-121-14/+14
|
* - Renamed "LambdaT" to "FunctionT".Eduardo Julian2017-04-101-69/+69
|
* - Renamed _lux_lambda to _lux_function.Eduardo Julian2017-04-101-72/+72
|
* - Renamed "lambda" to "function".Eduardo Julian2017-04-101-362/+362
|
* - Renamed lambda' and lambda'' to function' and function''.Eduardo Julian2017-04-101-613/+613
|
* - Fixed a bug in the way the Rec macro worked (it didn't update the indices ↵Eduardo Julian2017-04-081-1/+2
| | | | of its body type).
* - Renamed lux/data/text;replace to replace-all.Eduardo Julian2017-04-061-10/+10
| | | - Did some refactorings for lexers.
* - Moved lux/lexer and lux/lexer/regex to lux/data/text/lexer and ↵Eduardo Julian2017-04-051-65/+1
| | | | | | | | | lux/data/text/regex. - Moved lux/pipe to lux/control/pipe. - Moved the @pre and @post macros to lux/control/contract. - Improved error reporting for lux/type/auto. - Added a test for third-order type-checking for lux/type/auto. - Fixed a bug in the tests for lux/data/coll/vector.
* - :: can now be used to refer to sub-structures within a structure.Eduardo Julian2017-04-041-35/+50
|
* - Implemented Int encoding/decoding in the standard library.Eduardo Julian2017-04-031-78/+85
| | | | | - Moved some type-constructors for building functor types into the lux/control/functor module. - Renamed Ord to Order. - Renamed Env to Reader.
* - Nat encoding/decoding is now implemented in the standard library.Eduardo Julian2017-03-301-4/+25
|
* - Forgot commit the change about ["jvm" "try"] for lux/host.jvm.luxEduardo Julian2017-03-281-21/+26
|
* - Re-designed atomic operations as common procedures.Eduardo Julian2017-02-231-5/+5
| | | | - Implemented atomic operations for the JVM. - Basic Lux types no longer rely on JVM classes.
* - Implemented a variety of new procedures for text, chars, math and arrays.Eduardo Julian2017-02-221-7/+11
|
* - Implemented several new procedures.Eduardo Julian2017-02-161-74/+88
| | | | | | - Improved Lux-to-JS interactions. - Parallel compilation works for the JS backend. - Added more primitive functionality to the JS runtime. - More common procedures.
* - Now doing common array analysis/compilation.Eduardo Julian2017-02-111-9/+8
| | | | | | | - Now doing common io/log! analysis/compilation. - Now doing common char/to-text analysis/compilation. - Expanded compilation of procedures in JS. - Expanded LuxRT in JS. - Fixed some bugs.
* - Added support for compiling _lux_proc (some procedures).Eduardo Julian2017-02-051-151/+147
| | | | - Added support for compiling (some) procedures, captured-variables, iteration, if-expressions and get-expressions. - Fixed some bugs.
* - The data for checking which exceptions are being catched has been moved ↵Eduardo Julian2017-01-301-17/+22
| | | | from the host state to the normal compiler state.
* - More refactorings.Eduardo Julian2017-01-301-22/+41
| | | | - Changed the place where module-compilation-state was being stored. - No longer keeping the compiler's name as part of the compiler's state.
* - Changed the license from MPL 2.0 to MIT.Eduardo Julian2017-01-261-5/+0
|
* - Moved the lux/data/struct/* modules to lux/data/coll/*.Eduardo Julian2017-01-251-7/+7
| | | | | | | - Did the same for the lux/codata/struct/* modules. - Moved lux/codata/io to lux/io. - Moved lux/control/effect to lux/effect. - Renamed "sample" functions to "this" functions. - Renamed "at" functions to "nth" functions.
* - Renamed lux/data/struct/tree to lux/data/struct/tree/rose.Eduardo Julian2017-01-251-206/+206
| | | | | | - Moved lux/data/struct/zipper to lux/data/struct/tree/zipper. - Moved lux/regex to lux/lexer/regex. - Changed the suffix of annotation tags, from M to A. - Renamed Frac(tional) numbers to Deg(rees).
* - Added some type combinators for type constructors.Eduardo Julian2017-01-171-0/+9
|
* - Fixed a lot of errors in the documentation.Eduardo Julian2017-01-061-2/+3
|
* - Moved the template: macro to the lux module.Eduardo Julian2017-01-041-0/+114
|
* - Updated documentation for lux/cli, lux/compiler, lux/codata/*.Eduardo Julian2017-01-021-2/+2
|
* - Simple refactorings.Eduardo Julian2017-01-021-82/+178
| | | - Updated documentation of lux module.
* - Can make definitions that have meta-data but no type.Eduardo Julian2017-01-011-23/+29
| | | - Added a temporary "fix" to be able to access derived structs from the ::: macro, while a better solution is found.
* - Added the type-of macro.Eduardo Julian2016-12-171-14/+24
|
* - Updated tests for lux/type.Eduardo Julian2016-12-151-5/+5
| | | - Added tests for lux/type/check and lux/type/auto.
* - No longer using record syntax in certain macros.Eduardo Julian2016-12-121-1/+1
|
* - Renamed "==" function to "is".Eduardo Julian2016-12-121-3/+3
|
* - Small fixes, refactorings and expansions.Eduardo Julian2016-12-121-1/+1
|
* - Minor refactorings and expansions.Eduardo Julian2016-12-041-6/+4
|
* - Changed the names of math op functions to make them more consistent and ↵Eduardo Julian2016-12-021-188/+136
| | | | similar.
* - Collected the Lux compiler's repo, the Standard Library's, the Leiningen ↵Eduardo Julian2016-12-011-0/+5541
plugin's and the Emacs mode's into a big monorepo, to keep development unified.