aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Forgot to commit README changes related to the license.Eduardo Julian2018-12-041-1/+3
* Relicensed the Lux project (minus the Emacs plugin, which is still GPL).Eduardo Julian2018-12-041-19/+234
* Excised contribution relevant to this: https://github.com/LuxLang/lux/pull/34Eduardo Julian2018-12-032-100/+1
* Excised contribution relevant to this: https://github.com/LuxLang/lux/pull/33Eduardo Julian2018-12-031-1/+0
* Excised contribution relevant to this: https://github.com/LuxLang/lux/pull/35Eduardo Julian2018-12-032-31/+1
* Extracted "phase" from under "lux/platform/compiler/default".Eduardo Julian2018-10-2961-82/+73
* Added "Char" type.Eduardo Julian2018-10-291-3/+5
* Nested the compiler and the interpreter under the lux/platform/* path.Eduardo Julian2018-10-2977-78/+90
* Added a module for keyboard input.Eduardo Julian2018-10-291-0/+78
* Added a module for video display resolutions.Eduardo Julian2018-10-291-0/+30
* Some refactoring.Eduardo Julian2018-10-2713-343/+410
* - Refactored macro-expansion code.Eduardo Julian2018-10-273-116/+155
* Split-out the lux/compiler/meta/archive module.Eduardo Julian2018-10-275-111/+152
* Slight improvements to "lux/data/color".Eduardo Julian2018-10-181-38/+82
* - Added "Alpha" abstraction.Eduardo Julian2018-10-181-6/+26
* Minor refactoring.Eduardo Julian2018-10-135-42/+64
* Introduced an explicit "Compiler" abstraction.Eduardo Julian2018-10-134-50/+69
* Turned the Archive into an abstract type for greater safety when operating on...Eduardo Julian2018-10-131-23/+29
* - Some refactoring.Eduardo Julian2018-10-135-130/+167
* Removed timing/perf-logging.Eduardo Julian2018-10-135-87/+94
* Adapted new-luxc to latest stdlib changes.Eduardo Julian2018-08-2914-182/+177
* Field imports are now done as macros instead of functions.Eduardo Julian2018-08-292-65/+32
* Method imports are now done as macros instead of functions.Eduardo Julian2018-08-2919-452/+418
* More micro-optimizations.Eduardo Julian2018-08-291-58/+48
* Small additions to stdlib.Eduardo Julian2018-08-283-2/+33
* Micro-optimizations.Eduardo Julian2018-08-281-19/+32
* Micro-optimizations.Eduardo Julian2018-08-2614-199/+165
* Updated lux-mode.Eduardo Julian2018-08-261-2/+2
* Merge pull request #47 from LuxLang/faster-lexerThe Lux Programming Language2018-08-2665-1950/+1821
|\
| * Added Frac parsing.Eduardo Julian2018-08-262-35/+71
| * - Fixed some bugs.Eduardo Julian2018-08-251-84/+117
| * Some micro-optimizations.Eduardo Julian2018-08-243-138/+145
| * More inlining.Eduardo Julian2018-08-231-23/+35
| * Added a special compiler optimization to pattern-match on characters faster.Eduardo Julian2018-08-233-103/+168
| * Optimized character extraction by not having to query the length of the sourc...Eduardo Julian2018-08-233-168/+193
| * "lux text char" is now unsafe/optimized.Eduardo Julian2018-08-2310-260/+184
| * Optimized text clipping.Eduardo Julian2018-08-2312-167/+130
| * Added Rev parsing.Eduardo Julian2018-08-231-38/+33
| * Added record parsing.Eduardo Julian2018-08-233-170/+82
| * Added Int parsing.Eduardo Julian2018-08-231-260/+74
| * No more escape-tracking.Eduardo Julian2018-08-231-139/+42
| * No more escaping of back-slash.Eduardo Julian2018-08-238-123/+103
| * No more escaping of new-line.Eduardo Julian2018-08-2328-375/+362
| * No more escaping of double-quotes.Eduardo Julian2018-08-2320-167/+120
| * No more escaping of unicode.Eduardo Julian2018-08-226-43/+16
| * No more escaping of vertical-tab.Eduardo Julian2018-08-223-6/+2
| * No more escaping of carriage-return.Eduardo Julian2018-08-223-7/+2
| * No more escaping of form-feed.Eduardo Julian2018-08-223-5/+1
| * No more escaping of back-space.Eduardo Julian2018-08-222-4/+0
| * No more escaping of horizontal-tab.Eduardo Julian2018-08-2213-69/+71