aboutsummaryrefslogtreecommitdiff
path: root/luxc/src/lux/compiler/jvm/proc/common.clj (unfollow)
Commit message (Expand)AuthorFilesLines
2020-05-05Fixed bugs while parsing modules' cached data.Eduardo Julian1-4/+4
2020-04-16Generating definition names in a new way.Eduardo Julian1-2/+1
2019-04-28Turned all "lux int ???" extensions to "lux i64 ???".Eduardo Julian1-11/+8
2019-04-28Turned all "lux frac ???" extensions to "lux f64 ???".Eduardo Julian1-3/+3
2019-03-06Removed the "translation/common" hierarchy.Eduardo Julian1-5/+5
2018-08-24Some micro-optimizations.Eduardo Julian1-11/+14
2018-08-23Added a special compiler optimization to pattern-match on characters faster.Eduardo Julian1-1/+39
2018-08-23"lux text char" is now unsafe/optimized.Eduardo Julian1-1/+3
2018-08-23Optimized text clipping.Eduardo Julian1-1/+1
2018-08-11- Fixed common translation tests for JVM.Eduardo Julian1-36/+31
2018-07-31Now implementing box functionality in stdlib instead of the compiler.Eduardo Julian1-48/+0
2018-07-31Now implementing array functionality in stdlib instead of the compiler.Eduardo Julian1-98/+0
2018-07-31Now implementing process functionality in stdlib instead of the compiler.Eduardo Julian1-28/+0
2018-07-31Now implementing atom functionality in stdlib instead of the compiler.Eduardo Julian1-41/+0
2018-07-30Now implementing math functionality in stdlib instead of the compiler.Eduardo Julian1-56/+0
2018-07-11- Removed "lux text hash" extension.Eduardo Julian1-2/+0
2018-07-11- Got rid of "lux text replace-once" and "lux text replace-all" extensions.Eduardo Julian1-32/+0
2018-07-04- Implemented not-a-number and both infinities in pure Lux.Eduardo Julian1-7/+0
2018-05-13- Added new #I64 type as foundation for types based on 64-bit integers.Eduardo Julian1-65/+52
2018-05-08- Re-named "lux process concurrency-level" to "lux process parallelism-level".Eduardo Julian1-13/+2
2018-05-07- Implemented bit-count in pure Lux.Eduardo Julian1-12/+0
2018-05-07- Implemented Deg functionality in pure Lux.Eduardo Julian1-88/+0
2018-05-06- Implemented Nat functionality in pure Lux.Eduardo Julian1-88/+12
2018-05-06- Re-named shift-left -> left-shift, shift-right -> logical-right-shift, sign...Eduardo Julian1-6/+6
2018-05-06- Removed "lux text upper" and "lux text lower" procedures.Eduardo Julian1-16/+0
2018-04-05- Implemented some math functions in pure Lux, to reduce the needs of the com...Eduardo Julian1-20/+0
2018-02-24- Removed the "root2" and "root3" host procedures (their functionality is red...Eduardo Julian1-4/+0
2017-12-31- Added safe (single-threaded) mutation.Eduardo Julian1-0/+48
2017-12-31- Added safe (single-threaded) mutation.Eduardo Julian1-0/+48
2017-11-22- Fixed some bugs.Eduardo Julian1-19/+4
2017-11-21- Fixed some bugs.Eduardo Julian1-22/+22
2017-11-14- Made "lux text clip" work like it used to.Eduardo Julian1-3/+1
2017-11-14- Removed "lux text last-index" procedure.Eduardo Julian1-3/+1
2017-11-13- Type-vars no longer get deleted.Eduardo Julian1-2/+2
2017-09-04- Re-named "real" numbers to "frac"(tions).Eduardo Julian1-39/+39
2017-07-02- Lux no longer has a Char primitive data-type.Eduardo Julian1-57/+5
2017-05-23- Implemented Real<->Bits conversion (and used it to implement Hash<Real>).Eduardo Julian1-11/+0
2017-05-07- Fully implemented Deg encoding/decoding in pure Lux.Eduardo Julian1-25/+0
2017-05-05- Fixed a bug when compiling array-get, by just having it assume Object[] for...Eduardo Julian1-2/+1
2017-04-12- Removed CHECKCASTs related to make_none and make_some.Eduardo Julian1-2/+2
2017-04-03- Implemented Int encoding/decoding in the standard library.Eduardo Julian1-3/+0
2017-03-30- Nat encoding/decoding is now implemented in the standard library.Eduardo Julian1-3/+0
2017-03-28- Added ["deg" "reciprocal"] procedure.Eduardo Julian1-0/+2
2017-03-27- Expanded the lux/control/interval module.Eduardo Julian1-0/+2
2017-03-21- Fixed a bug when compiling the ["io" "exit"] procedure on the JVM.Eduardo Julian1-1/+2
2017-02-26- Added a new try-catch procedure.Eduardo Julian1-1/+11
2017-02-26- Implemented math procedures for JS.Eduardo Julian1-4/+0
2017-02-25- Exiting the program and getting the current time (in milliseconds) is now d...Eduardo Julian1-1/+22
2017-02-23- Re-designed (and implemented) the primitives for running processes/threads ...Eduardo Julian1-0/+39
2017-02-23- Re-designed atomic operations as common procedures.Eduardo Julian1-14/+55