aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - lux;using no longer prefixes variables.Eduardo Julian2015-07-2912-367/+544
| | | | - Fixed several bugs with host (JVM) interop. - Now packaging everything in a .jar file ("program.jar").
* - Changed the name of lux/host/java to lux/host/jvmEduardo Julian2015-07-265-48/+29
| | | | | - Completed lux/host/jvm - Modified (slightly) the syntax used in several host (JVM) special forms. - The "defsyntax" macro now binds all of the arguments it receives inside a variable named "tokens".
* - Fixed a pattern-matching error where generalizations of types ↵Eduardo Julian2015-07-269-141/+234
| | | | | | (universal-quantification / AllT) was not being taken into account properly when destructuring. - Fixed a compiler error wherein the types of definitions didn't generate (correctly) the structures necessary for storage inside the class _meta(data) field. - Improved both the "open" and "import" macros with extra features.
* - The output directory is now being used as the cache.Eduardo Julian2015-07-256-160/+165
| | | - "input" has been renamed as "source" and "output" has been renamed as "target".
* /cache and /output now using same format.Eduardo Julian2015-07-258-196/+84
|
* - Removed the "seen-sources" field from the compiler state.Eduardo Julian2015-07-245-89/+80
| | | - Fixed the caching mechanism.
* - Fixed an error when compiling Java field access (both static & virtual).Eduardo Julian2015-07-248-185/+209
| | | - Fixed some errors regarding cache loading.
* - Added a way to pass the cursor from un-expanded macro-forms to their ↵Eduardo Julian2015-07-212-4/+10
| | | | | expansions in order to aid error-reporting. - Added recursive type definitions through the #rec tag in deftype.
* - Added a few more modules.Eduardo Julian2015-07-192-20/+29
| | | - Added some type-tags to avoid reflection inside the compiler.
* Added copyright notice on all files that missed it.Eduardo Julian2015-07-1922-1/+176
|
* - Some bug fixes.Eduardo Julian2015-07-198-364/+382
| | | - More additions to the standard library.
* - Added a ' (quote) macro that works like ` (backquote), without unquote or ↵Eduardo Julian2015-07-142-12/+87
| | | | | unquote splice working and not automatic prefixing of unprefixed symbols/tags. - Added (slightly) better type-error messages.
* - Added the beginnings of the standard library.Eduardo Julian2015-07-1212-122/+247
| | | - Fixed several bugs.
* - The backwards analysis of function application is back.Eduardo Julian2015-06-213-105/+108
|
* - The directory for source-code is now named "input".Eduardo Julian2015-06-2012-240/+466
| | | - Implemented module-caching to avoid the waiting too much during program compilation.
* - Added imports.Eduardo Julian2015-06-128-55/+121
| | | - Now storing information about definitions & imports inside the .class files.
* - Reimplemented module-aliasing.Eduardo Julian2015-06-103-33/+73
|
* - Now displaying the location where the analyser finds error (file-name, ↵Eduardo Julian2015-06-093-219/+229
| | | | line & column).
* - Put definition metadata into the generated .class files.Eduardo Julian2015-06-091-6/+146
|
* - Finished _jvm-interface_ & _jvm-class_.Eduardo Julian2015-05-318-102/+254
| | | - The version of the compiler is now stored as a field in the compiled definitions.
* - Now storing the hash of the source file as a final, static field of the ↵Eduardo Julian2015-05-272-5/+9
| | | | generated class.
* - _jvm_program now relies on the (IO (,)) type.Eduardo Julian2015-05-273-7/+82
| | | - The command-line params argument in jvm_program is now transformed from a String array into (List Text).
* - Now using an in-memory class-loader.Eduardo Julian2015-05-263-16/+47
|
* - Cleaned-up a few things in lux.luxEduardo Julian2015-05-2410-330/+332
| | | | - Replace most instances of "=" with ".equals". - Added an optimization to lux.type/type= that drastically speeds-up type comparisons.
* - Added a simple optimization based on the idea of avoiding to compare 2 ↵Eduardo Julian2015-05-221-33/+35
| | | | | type-functions which are most-likely the same, due to their name (remembering that when you define types using deftype, the type-function's name will correspond to the def's). - Gave empty environments to top-level type-functions, instead of leaving them with unset environments.
* - Corrected the indentation issues in the lux files.Eduardo Julian2015-05-229-157/+227
| | | | | | | - Temporarily reverted back to forward apply-analysis. - Fixed an error in lux.base/show-ast. - Reader now only returns a tuple instead of a full-blown #Meta variant. - Reader now doesn't cut the strings that it reads. Instead, the "cursor" just moves around, indicating where to read. - Inlined some calculations that previously relied on try-all%.
* - Removed the apparently unnecessary total-locals.Eduardo Julian2015-05-143-110/+2
|
* - Multi-line comments have returned.Eduardo Julian2015-05-143-19/+62
|
* - Changed the names of the tags of the Syntax type to differentiate them ↵Eduardo Julian2015-05-107-189/+189
| | | | better from the tags of the Type type.
* - Switched to the new prefix convention for both lux's special forms and the ↵Eduardo Julian2015-05-108-211/+238
| | | | | host's. - Made a few optimizations to speed-up the now slowed-down compiler.
* - Now analysing function-application backwards.Eduardo Julian2015-05-104-81/+84
|
* - Eliminated #eval-ctor from the HostState and now #seed is used for the ↵Eduardo Julian2015-05-075-50/+42
| | | | | same purpose. - Optimized some code a bit.
* - Made several optimizations to the compiler.Eduardo Julian2015-05-0614-243/+177
| | | - Also removed several unused definitions.
* - Made some small optimizations in the compiler.Eduardo Julian2015-05-069-95/+108
|
* - Removed a few unused definitions inside lux.baseEduardo Julian2015-05-061-91/+3
|
* - Removed all the unnecesary comments.Eduardo Julian2015-05-0620-1002/+689
| | | - Made some changes to the way type-checking is performed on variants, records & tuples in order to improve the speed of type-checking.
* v0.1Eduardo Julian2015-05-042-10/+81
|
* - Added the LuxVar type to properly specify the type of environment bindings.Eduardo Julian2015-05-0410-117/+203
| | | | | | | | | - Implemented "using". - Implemented jvm-program. - Corrected some primitive (un)wrapping errors in lux.compiler.host. - jvm-program is now scoped to enable local variables. - The types of definitions are now stored within the module dictionary. - Added a "main" method that just compiles program.lux.
* - Added alias-lux to import lux.lux definitions.Eduardo Julian2015-05-048-59/+108
| | | | - Fixed a few bugs both in lux.lux & the compiler. - Added exports to the language.
* - Added def-aliasing.Eduardo Julian2015-05-033-22/+54
| | | | | | - | and & now normalize their slot-names. - Added several implementations of Eq, Ord & Show.
* - Added ;;self-prefixes.Eduardo Julian2015-05-032-90/+94
| | | | - Added a version of ` that prefixes unprefixed idents with the current module's name. - The special forms no longer require unprefixed symbols and work with anything (in order to work properly with the new `).
* - Optimized the compiler by eliminating reflection.Eduardo Julian2015-05-0314-133/+78
|
* - Fixed escaping in charsEduardo Julian2015-05-032-4/+4
| | | | - Added 2 custom pattern-matchers (\ & \or) & gensym - Added signatures & structures ^_^
* - The type syntax is finally complete ^_^Eduardo Julian2015-05-037-51/+36
| | | | | | | | | - Finally, the "case" macro has been implemented ^_^ - The macro-expand function is also alive! - Corrected the field-access special forms so they take their field as a symbol instead of text. - Macros are no longer stored inside the CompilerState as (Maybe Macro), but as Macro. - Void is implemented as - Fixed an error when parsing escaped characters in text. - Fixed an error in the reader in which parsing regex2 gave back a 2-vector instead of a 2-tuple.
* - Implemented some new macros & functions in lux.lux.Eduardo Julian2015-05-023-36/+39
| | | - WORKING ON DEBUGGING A COMPILER ERROR: java.lang.IncompatibleClassChangeError
* - Finally got find-macro & macro-expand to work... (Note: type-vars bug is ↵Eduardo Julian2015-05-023-71/+78
| | | | | still there. Must find & squash). -
* - Added existential types via #ExT.Eduardo Julian2015-05-013-46/+18
| | | - Removed the (now useless) lux.type/is-Type? function.
* Optimized the compiler with 2 tweaks:Eduardo Julian2015-05-0111-123/+104
| | | | - Compilation units are not longer wrapped inside Expression/Statement variants. - analyse-apply* no longer returns lists.
* - Added the lux;seed slot to the compiler state.Eduardo Julian2015-05-015-34/+74
| | | | - Macro declarations are now handled at the compiler-phase instead of the analyser phase to avoid the posibility of trying to declare a yet-uncompiled macro (due to the macro-expansion of defmacro). - Added a makeshift implementation of existential types on top of BoundT (must migrate to a more permanent implementation).
* - declare-macro has returned.Eduardo Julian2015-05-017-67/+157
| | | | | | - Method-invocation special forms now take the wanted method as an unprefixed symbol, instead of as text. - Some fixes in lux.analyser.host. - Lambda analysis now just returns the origin exo-type instead of the endo-type. - Made some changes to the type of the CompilerState.