aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Added region-based resource management.Eduardo Julian2017-12-312-1/+147
|
* - Added safe (single-threaded) mutation.Eduardo Julian2017-12-311-0/+78
|
* - Added bit-sets.Eduardo Julian2017-12-316-40/+212
|
* - A small, in-development module for doing constructive mathematics with ↵Eduardo Julian2017-12-281-0/+196
| | | | something close to dependent types.
* - Added quotient types.Eduardo Julian2017-12-281-0/+68
|
* - Added module for predicates.Eduardo Julian2017-12-258-33/+153
| | | | | - Added refinement types. - Small refactorings and fixes. - Added the capacity to unquote expressions inside the 'lux.type' macro.
* - Minor refactorings and bug fixes.Eduardo Julian2017-12-245-177/+215
|
* - Added type-safe modular arithmetic.Eduardo Julian2017-12-242-4/+177
|
* - Agent-based concurrency is just actors listening to FRP channels, so ↵Eduardo Julian2017-12-121-154/+0
| | | | special support for it was removed.
* - FRP channels are no longer asynchronously-built lists, but rather mediums ↵Eduardo Julian2017-12-124-384/+159
| | | | for spreading data, that can be chained together to form networks for data distribution.
* - Some minor refactoring.Eduardo Julian2017-12-1012-195/+217
| | | - Eliminated the dependency of STM upon FRP.
* - Some minor refactoring.Eduardo Julian2017-12-104-164/+135
| | | | - Eliminated the dependency of actors upon FRP and STM. - Fixed some bugs.
* - WIP: Caching.Eduardo Julian2017-12-053-11/+30
|
* - Brought luxc and new-luxc closer together.Eduardo Julian2017-12-057-201/+130
|
* - Added analysis, synthesis, translation and statement extensions.Eduardo Julian2017-12-052-18/+25
| | | | - No longer doing ad-hoc I/O in new-luxc. - Minor fixes and adjustments.
* - No longer using BufferedReader for console input.Eduardo Julian2017-12-041-24/+51
|
* - lux/world/file now works with Process, instead of Task.Eduardo Julian2017-12-041-41/+39
|
* - No longer deleting type-vars in luxc, to better match it with the ↵Eduardo Julian2017-12-047-139/+122
| | | | | type-checking in new-luxc. - Fixed some minor bugs and inconsistencies.
* - Implemented unit types on top of abstract types.Eduardo Julian2017-12-042-39/+32
|
* - Re-named "Def" to "Definition".Eduardo Julian2017-12-047-103/+103
|
* - Added location information to syntax errors.Eduardo Julian2017-12-031-1/+4
|
* - Fixed some small issues uncovered by new-luxc.Eduardo Julian2017-12-033-10/+13
|
* - Added some ~! to some macros to stop them from imposing dependencies.Eduardo Julian2017-12-023-41/+51
| | | - Added some code to "lux.type" so it can handle "lux in-module".
* - "gensym" went back to producing Code, instead of Ident.Eduardo Julian2017-12-0219-268/+258
|
* - Added context-sensitive macro-expansion by means of "lux in-module", and ↵Eduardo Julian2017-12-0224-345/+228
| | | | | | removed all the (now unnecessary) #hidden tags. - Fixed a bug when loading the imports from the cache. - Added special notation for context-sensitive macro-expansion.
* - Added new "lux in-module" procedure for changing the module while ↵Eduardo Julian2017-12-021-7/+13
| | | | analysing an expression.
* - Changed some of the syntax for macro templating.Eduardo Julian2017-12-0131-731/+739
| | | - "gensym" now produces Ident instead of Code.
* - Made it so that module annotations can only be set once now.Eduardo Julian2017-12-011-2/+2
|
* - Changed the way test durations are shown.Eduardo Julian2017-12-011-1/+1
|
* - Re-named lux/type/opaque to lux/type/abstract.Eduardo Julian2017-11-2910-52/+52
|
* - Changed the identifier separator, from the semi-colon (;) to the ↵Eduardo Julian2017-11-29109-7402/+7409
| | | | period/dot (.).
* - Re-named the "." function to "compose" and moved it to lux/function.Eduardo Julian2017-11-2817-159/+166
|
* - Changed the syntax involved in JVM host-interop.Eduardo Julian2017-11-2710-344/+322
|
* - Got rid of even more dots.Eduardo Julian2017-11-2743-174/+174
|
* - Changed the prefixes of numeric functions.Eduardo Julian2017-11-2754-1105/+1089
|
* - Changed to the new relative imports syntax.Eduardo Julian2017-11-2618-170/+172
|
* - Added REPL.Eduardo Julian2017-11-232-3/+14
|
* - Added console I/O.Eduardo Julian2017-11-231-0/+74
|
* - Fixed some bugs.Eduardo Julian2017-11-2213-111/+200
| | | | - Some refactoring. - Added some alternative snippets of code that new-luxc can handle better.
* - Fixed some bugs.Eduardo Julian2017-11-219-389/+363
| | | - Some small refactoring.
* - Added parallel compilation.Eduardo Julian2017-11-2012-166/+205
| | | | | - Added aliasing. - Several bug fixes. - Some minor refactoring.
* - Added "Process" type for IO operations that can fail.Eduardo Julian2017-11-161-10/+39
|
* - Re-named "lux/meta" to to "lux/macro".Eduardo Julian2017-11-1544-289/+289
|
* - Moved "/type/*" to from "lux/meta/" to "lux/".Eduardo Julian2017-11-1519-107/+107
|
* - Moved "/type" and "/type/check" from "lux/meta" to "lux/lang".Eduardo Julian2017-11-1512-34/+34
|
* - Re-named "lux/meta/type/auto" to "lux/meta/type/implicit".Eduardo Julian2017-11-152-1/+1
|
* - Moved "luxc/lang/syntax" to "lux/lang/syntax".Eduardo Julian2017-11-151-0/+623
| | | - Minor refactoring.
* - Moved type-cleaning to lux/meta/type/check.Eduardo Julian2017-11-151-1/+37
|
* - Small refactoring.Eduardo Julian2017-11-142-61/+61
|
* - Modified the syntax for module definitions.Eduardo Julian2017-11-141-1/+1
| | | - Fixed some bugs.