aboutsummaryrefslogtreecommitdiff
path: root/luxc/src/lux/lexer.clj (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Re-named old luxc-jvm to lux-bootstrapper.Eduardo Julian2020-12-041-137/+0
|
* Type-checking macros via the Macro' type from the standard library.Eduardo Julian2020-10-121-1/+1
|
* Replaced the digit separator in numbers from "_" to ",".Eduardo Julian2019-03-131-5/+5
|
* No more escaping of back-slash.Eduardo Julian2018-08-231-20/+1
|
* No more escaping of new-line.Eduardo Julian2018-08-231-18/+2
|
* No more escaping of double-quotes.Eduardo Julian2018-08-231-2/+0
|
* No more escaping of unicode.Eduardo Julian2018-08-221-3/+0
|
* No more escaping of vertical-tab.Eduardo Julian2018-08-221-2/+0
|
* No more escaping of carriage-return.Eduardo Julian2018-08-221-2/+0
|
* No more escaping of form-feed.Eduardo Julian2018-08-221-2/+0
|
* No more escaping of back-space.Eduardo Julian2018-08-221-2/+0
|
* No more escaping of horizontal-tab.Eduardo Julian2018-08-221-2/+0
|
* No more multi-line text.Eduardo Julian2018-08-221-27/+12
|
* No more multi-line comments.Eduardo Julian2018-08-221-16/+1
|
* Some refactoring.Eduardo Julian2018-08-201-3/+4
|
* Removed temporary "|" prefix on Nat.Eduardo Julian2018-07-281-1/+1
|
* Added "+" sign to positive Int.Eduardo Julian2018-07-281-3/+2
|
* Temporary commit to get rid of "+" signs for Nat.Eduardo Julian2018-07-281-3/+4
|
* Re-named "Symbol" to "Identifier".Eduardo Julian2018-07-211-4/+4
|
* - New syntax for bit values: "#0" and "#1", instead of "false" and "true".Eduardo Julian2018-07-141-1/+1
| | | - Small improvements to lux-mode.
* Re-named "Bool" type to "Bit".Eduardo Julian2018-07-131-3/+3
|
* - Fixes: Part 0.Eduardo Julian2018-07-091-1/+1
|
* - Re-named "degree" to "revolution".Eduardo Julian2018-07-041-3/+3
|
* - Improved syntax for numeric literals by allowing arbitrary zeroes (0) at ↵Eduardo Julian2018-07-031-4/+4
| | | | the front of numbers.
* - Changed the identifier separator, from the semi-colon (;) to the ↵Eduardo Julian2017-11-291-4/+6
| | | | period/dot (.).
* - Re-named "real" numbers to "frac"(tions).Eduardo Julian2017-09-041-3/+3
|
* - Lux no longer has a Char primitive data-type.Eduardo Julian2017-07-021-39/+0
|
* - Made some improvements to error messages in the compiler.Eduardo Julian2017-04-051-1/+1
|
* - The lexer can now recognize a escape-character for vertical tabs (\v).Eduardo Julian2017-02-221-0/+4
|
* - Changed the license from MPL 2.0 to MIT.Eduardo Julian2017-01-261-5/+0
|
* - Improved Lux error messages by ensuring the cursor is always present.Eduardo Julian2017-01-251-1/+1
|
* - Renamed lux/data/struct/tree to lux/data/struct/tree/rose.Eduardo Julian2017-01-251-7/+7
| | | | | | - 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).
* - Now, only using underscores (_) as number digit separators, without using ↵Eduardo Julian2016-12-251-5/+5
| | | | commas (,).
* - Collected the Lux compiler's repo, the Standard Library's, the Leiningen ↵Eduardo Julian2016-12-011-0/+254
plugin's and the Emacs mode's into a big monorepo, to keep development unified.