aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test (follow)
Commit message (Collapse)AuthorAgeFilesLines
* WIP: PHP compiler.Eduardo Julian2019-04-241-0/+3
|
* Moved the code/syntax parser under "lux/control/parser/".Eduardo Julian2019-04-193-37/+42
|
* Moved the XML parser under "lux/control/parser/".Eduardo Julian2019-04-191-11/+12
|
* Moved the JSON parser under "lux/control/parser/".Eduardo Julian2019-04-191-2/+4
|
* Re-named "lux/data/collection/tree/rose" to "lux/data/collection/tree".Eduardo Julian2019-04-193-14/+12
|
* Moved the (rose) tree parser under "lux/control/parser/".Eduardo Julian2019-04-192-102/+94
|
* Moved the CLI parser under "lux/control/parser/".Eduardo Julian2019-04-193-14/+17
|
* Renamed both "Poly" and "Lexer" to "Parser" in order to normalize naming a bit.Eduardo Julian2019-04-192-6/+8
|
* Moved the text lexers under "lux/control/parser/".Eduardo Julian2019-04-195-11/+20
|
* Extracted the type-parsing machinery into its own module.Eduardo Julian2019-04-191-2/+5
|
* Simplified the "Order" signature.Eduardo Julian2019-04-173-18/+22
|
* The old compiler is now identified with "old" instead of "jvm". This should ↵Eduardo Julian2019-04-162-0/+0
| | | | help to get old JVM code and new JVM code to coexist without forcing a major rewrite of old compiler code to get it to fit the style of the new JVM compiler code.
* Improvements to error messaging for extensions.Eduardo Julian2019-04-161-5/+5
|
* Removed the (deemed unnecessary) host extensions for the scripting languages.Eduardo Julian2019-04-151-3/+1
|
* Ported the synthesis tests to the new format.Eduardo Julian2019-04-1512-460/+472
|
* Ported the analysis tests to the new format.Eduardo Julian2019-04-1416-1037/+1088
|
* Started porting tests for "lux/tool".Eduardo Julian2019-04-134-168/+183
|
* Fixed some bugs.Eduardo Julian2019-04-123-25/+17
|
* Improvements and fixes to "tuple//left" and "tuple//right".Eduardo Julian2019-04-122-16/+26
|
* WIP: Lua compiler.Eduardo Julian2019-04-111-1/+5
|
* Moved Ruby back-end code to stdlib.Eduardo Julian2019-04-081-1/+7
|
* Moved "lux/cli", "lux/io" and "lux/function" under "lux/control".Eduardo Julian2019-04-0631-125/+138
|
* Created the "lux/abstract" branch and moved some modules into it.Eduardo Julian2019-04-0694-132/+149
|
* Fixed a bug when pattern matching against "Error" values.Eduardo Julian2019-04-041-14/+13
|
* Forgot "lux text char".Eduardo Julian2019-04-041-1/+1
|
* Changed the order of the inputs to the common extensions.Eduardo Julian2019-04-041-18/+18
|
* Re-named "do-template" to "template".Eduardo Julian2019-03-3019-33/+33
|
* Yet more fixes.Eduardo Julian2019-03-302-5/+5
|
* Fixed some more tests.Eduardo Julian2019-03-304-26/+24
|
* Fixed more tests.Eduardo Julian2019-03-2912-349/+321
|
* Fixed some tests.Eduardo Julian2019-03-2812-167/+196
|
* WIP: Moved Python code-generation machinery over to stdlib.Eduardo Julian2019-03-261-2/+5
|
* Ported tests for world-related modules.Eduardo Julian2019-03-256-302/+327
|
* Ported tests for type-related modules.Eduardo Julian2019-03-247-450/+452
|
* Ported tests for macro-related modules.Eduardo Julian2019-03-248-236/+310
|
* Ported tests for math-related modules.Eduardo Julian2019-03-2410-493/+442
|
* Ported tests for collection-related modules.Eduardo Julian2019-03-2420-1208/+1243
|
* Ported tests for format-related modules.Eduardo Julian2019-03-234-191/+140
|
* Ported tests for time-related modules.Eduardo Julian2019-03-237-281/+198
|
* Ported tests for text-related modules.Eduardo Julian2019-03-228-607/+564
|
* Ported tests for number-related modules.Eduardo Julian2019-03-2236-666/+827
|
* - Ported lux/data/bit tests.Eduardo Julian2019-03-2112-348/+407
| | | | | | | | - Ported lux/data/color tests. - Ported lux/data/error tests. - Ported lux/data/identity tests. - Ported lux/data/lazy tests. - Ported lux/data/maybe tests. - Ported lux/data/name tests.
* - Ported lux/control/concurrency/promise tests.Eduardo Julian2019-03-214-108/+122
| | | - Ported lux/control/concurrency/stm tests.
* Fixed a bug in the FRP/channel monad.Eduardo Julian2019-03-212-12/+15
|
* Changed the convention for the structure opening separator from "/" to ";", ↵Eduardo Julian2019-03-1567-537/+542
| | | | to avoid confusion since "/" is used for relative module paths.
* Now allowing the alias of a module to refer to the alias of an ancestor.Eduardo Julian2019-03-143-31/+31
|
* Replaced the digit separator in numbers from "_" to ",".Eduardo Julian2019-03-136-14/+14
|
* Re-named ":extract" to ":by-example".Eduardo Julian2019-03-121-3/+3
|
* Added the capacity to extract type-information from values to create new ↵Eduardo Julian2019-03-021-0/+10
| | | | types based on that.
* Got rid of the Task type (it just provided the same functionality as ↵Eduardo Julian2019-02-241-41/+42
| | | | (error.with promise.monad)).