aboutsummaryrefslogtreecommitdiff
path: root/source (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-08-12- Changing tags so they're actually indices (part 3). Eduardo Julian1-50/+58
- Added several bug fixes - Changed "Reader" to "Source" and "HostState" to "Host" in lux.lux - Set up indexing of records via tags. - Added lux.analyser.record namespace. - Removed some (now) unnecessary code for working with records. - Added the license (can't believe I missed it for so long.)
2015-08-10- Changing tags so they're actually indices (part 2).Eduardo Julian1-4/+4
- Fixed some bugs. - Now pattern-matching on variants works with indices, rather than text tags.
2015-08-10- Changing tags so they're actually indices (part 1).Eduardo Julian1-118/+190
- Fixed a bug regarding type coercion (type-checking was ocurring unnecessarily). - Fixed another bug regarding Local/Global variables.
2015-08-05- Local vars can now longer have prefixed symbols.Eduardo Julian7-139/+152
2015-08-05- The compiler now stores the cursor of the last analysed AST in order to ↵Eduardo Julian2-15/+30
avoid the problem of error ocurring "nowhere" (at ["" -1 -1]).
2015-08-04- Struct definition no longer required prefixed members (now, it actually ↵Eduardo Julian19-356/+371
prohibits them).
2015-08-04- Renamed the Syntax type to AST.Eduardo Julian15-241/+271
- Created the lux/meta/ast module.
2015-08-04- Added a macro for exporting definitions (to not depend on the #export tag ↵Eduardo Julian6-32/+47
on definitions). - The "open" and "using" macros now work recursively on records.
2015-08-03- Type definitions inside the compiler data now hold the type itself.Eduardo Julian4-22/+48
- Value definitions inside the compiler data now hold the value itself. - Fixed a few bugs.
2015-08-03Implemented text-interpolation through a macro ("<>") in lux/data/textEduardo Julian6-24/+89
2015-08-02- Added a module for hashing.Eduardo Julian8-281/+431
- Refactored the standard library a bit. - Implemented the "loop" macro. - Added the expected type of expressions as a field in the compiler state. - Added syntactic sugar for using tuples with variants, in order to minimize the usage of brackets to delimit the contents of data-structures. - Fixed a bug wherein "macro-expand" was behaving like "macro-expand-all", and added a separate implementation for "macro-expand-all". - Fixed a few bugs.
2015-07-31- Did some refactoring of the standard library.Eduardo Julian27-711/+1080
- Introduced 2 new modules: lux/data/tuple & lux/codata/function - Now doing safe reading of files. - Took the "let", "lambda" & "def" macros to their ultimate form. - Added some macros for doing better JVM interop. - Fixed a bug when compiling comparisons for doubles. - Changed the order in which arguments are compiled for all arithmetic operations, as the order is reversed (from the conventional order) in the JVM bytecode.
2015-07-29- lux;using no longer prefixes variables.Eduardo Julian11-96/+67
- Fixed several bugs with host (JVM) interop. - Now packaging everything in a .jar file ("program.jar").
2015-07-26- Changed the name of lux/host/java to lux/host/jvmEduardo Julian9-195/+145
- 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".
2015-07-26- Fixed a pattern-matching error where generalizations of types ↵Eduardo Julian8-93/+133
(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.
2015-07-25- The output directory is now being used as the cache.Eduardo Julian31-0/+5222
- "input" has been renamed as "source" and "output" has been renamed as "target".
2015-06-20- The directory for source-code is now named "input".Eduardo Julian2-2184/+0
- Implemented module-caching to avoid the waiting too much during program compilation.
2015-06-12- Added imports.Eduardo Julian1-18/+24
- Now storing information about definitions & imports inside the .class files.
2015-06-10- Reimplemented module-aliasing.Eduardo Julian1-26/+35
2015-06-09- Put definition metadata into the generated .class files.Eduardo Julian1-23/+6
2015-05-31- Finished _jvm-interface_ & _jvm-class_.Eduardo Julian1-93/+114
- The version of the compiler is now stored as a field in the compiled definitions.
2015-05-27- _jvm_program now relies on the (IO (,)) type.Eduardo Julian2-10/+8
- The command-line params argument in jvm_program is now transformed from a String array into (List Text).
2015-05-26- Now using an in-memory class-loader.Eduardo Julian1-2/+4
2015-05-24- Cleaned-up a few things in lux.luxEduardo Julian1-110/+100
- Replace most instances of "=" with ".equals". - Added an optimization to lux.type/type= that drastically speeds-up type comparisons.
2015-05-22- Added a simple optimization based on the idea of avoiding to compare 2 ↵Eduardo Julian1-35/+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.
2015-05-22- Corrected the indentation issues in the lux files.Eduardo Julian2-1003/+1074
- 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%.
2015-05-14- Removed the apparently unnecessary total-locals.Eduardo Julian2-14/+34
2015-05-10- Changed the names of the tags of the Syntax type to differentiate them ↵Eduardo Julian1-226/+226
better from the tags of the Type type.
2015-05-10- Switched to the new prefix convention for both lux's special forms and the ↵Eduardo Julian2-1158/+1169
host's. - Made a few optimizations to speed-up the now slowed-down compiler.
2015-05-10- Now analysing function-application backwards.Eduardo Julian2-377/+311
2015-05-07- Eliminated #eval-ctor from the HostState and now #seed is used for the ↵Eduardo Julian1-4/+2
same purpose. - Optimized some code a bit.
2015-05-06- Made several optimizations to the compiler.Eduardo Julian1-2/+2
- Also removed several unused definitions.
2015-05-04v0.1Eduardo Julian1-1/+1
2015-05-04- Added the LuxVar type to properly specify the type of environment bindings.Eduardo Julian2-14/+144
- 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.
2015-05-04- Added alias-lux to import lux.lux definitions.Eduardo Julian2-87/+137
- Fixed a few bugs both in lux.lux & the compiler. - Added exports to the language.
2015-05-03- Added def-aliasing.Eduardo Julian1-68/+113
- | and & now normalize their slot-names. - Added several implementations of Eq, Ord & Show.
2015-05-03- Added ;;self-prefixes.Eduardo Julian1-48/+103
- 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 `).
2015-05-03- Fixed escaping in charsEduardo Julian1-17/+189
- Added 2 custom pattern-matchers (\ & \or) & gensym - Added signatures & structures ^_^
2015-05-03- The type syntax is finally complete ^_^Eduardo Julian1-110/+182
- 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.
2015-05-02- Implemented some new macros & functions in lux.lux.Eduardo Julian1-113/+212
- WORKING ON DEBUGGING A COMPILER ERROR: java.lang.IncompatibleClassChangeError
2015-05-02- Finally got find-macro & macro-expand to work... (Note: type-vars bug is ↵Eduardo Julian1-68/+32
still there. Must find & squash). -
2015-05-01- Added existential types via #ExT.Eduardo Julian1-1/+2
- Removed the (now useless) lux.type/is-Type? function.
2015-05-01Optimized the compiler with 2 tweaks:Eduardo Julian1-26/+0
- Compilation units are not longer wrapped inside Expression/Statement variants. - analyse-apply* no longer returns lists.
2015-05-01- Added the lux;seed slot to the compiler state.Eduardo Julian1-6/+35
- 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).
2015-05-01- declare-macro has returned.Eduardo Julian1-694/+464
- 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.
2015-04-30- Implemented pattern-matching for records.Eduardo Julian1-61/+23
- Added some code to allow variant creation with existential types. (NOTE: Check if it's actually valid) - Modify var cleanup to leave the var as-is if it has been deleted. (NOTE: Need to find out why a variable is left prior to being deleted)
2015-04-29- Made a slight correction to the Syntax type when it comes to records ↵Eduardo Julian1-208/+192
(slot-names are no longer Text, but Syntax). - lux/type;bound? no longer does further derefs to check for bound-ness? - Improved the way 2 type-vars are type-checked. - When cleaning type-vars, the dereffed typed is no longer cleaned again.
2015-04-28- Fixed some errors in lux.lux.Eduardo Julian1-1102/+1294
- Added the ability to export from def. - Added an optimized lambda macro. - Finished record analysis & compilation. - Fixed a bug in tuple, function & record analysis wherein AppT wasn't being performed prior to analysing the expression under analysis. - Fixed several bugs wherein "fail*" was needed but "fail" was used. - Added a case for records in base;show-ast. - Made an improvement for AllT in type;show-type. - Corrected an error in pattern-matching compilation wherein casts weren't being performed to make sure the source datum was of the necessary type for PM. - Removed the (now unnecessary) lux/macro.
2015-04-26- lux/analyser/def has been renamed to lux/analyser/module.Eduardo Julian1-214/+213
- Renamed a few defs in lux.lux. - No more type-test shortcut inside lux/analyser/lux. - Defs are now being classified as either (#ValueD <type>) or (#MacroD <macro>).
2015-04-26Made a correction to lux.lux and the analyser regarding how to handle type-vars.Eduardo Julian1-3/+4