aboutsummaryrefslogtreecommitdiff
path: root/luxc/src/lux/analyser/proc/common.clj (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - Added ["deg" "reciprocal"] procedure.Eduardo Julian2017-03-281-8/+14
|
* - Expanded the lux/control/interval module.Eduardo Julian2017-03-271-0/+2
| | | - Implemented Enum<Real>.
* - Added a new try-catch procedure.Eduardo Julian2017-02-261-1/+14
|
* - Implemented math procedures for JS.Eduardo Julian2017-02-261-4/+0
| | | - Degree<->radian conversions are no longer math procedures.
* - Exiting the program and getting the current time (in milliseconds) is now ↵Eduardo Julian2017-02-251-4/+15
| | | | done through procedures.
* - Re-designed (and implemented) the primitives for running processes/threads ↵Eduardo Julian2017-02-231-0/+31
| | | | as Lux procedures.
* - Re-designed atomic operations as common procedures.Eduardo Julian2017-02-231-0/+39
| | | | - Implemented atomic operations for the JVM. - Basic Lux types no longer rely on JVM classes.
* - Implemented a variety of new procedures for text, chars, math and arrays.Eduardo Julian2017-02-221-16/+124
|
* - Added more common procedures.Eduardo Julian2017-02-171-18/+38
| | | | | | | - Fixed some bugs in the type-checking of some common procedures. - Removed the "_name" field for generated classes. - Now compiling loops in JS. - Did some refactoring to the caching machinery. - Implemented binary, octal and hexadecimal encoding purely in Lux.
* - Implemented several new procedures.Eduardo Julian2017-02-161-21/+104
| | | | | | - Improved Lux-to-JS interactions. - Parallel compilation works for the JS backend. - Added more primitive functionality to the JS runtime. - More common procedures.
* - Now doing common array analysis/compilation.Eduardo Julian2017-02-111-9/+71
| | | | | | | - Now doing common io/log! analysis/compilation. - Now doing common char/to-text analysis/compilation. - Expanded compilation of procedures in JS. - Expanded LuxRT in JS. - Fixed some bugs.
* - Reorganized the code related to _lux_proc a bit.Eduardo Julian2017-02-071-0/+288
- Implemented some of the low-level machinery for 64-bit integers.