aboutsummaryrefslogtreecommitdiff
path: root/source/lux.lux (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-08-05- Local vars can now longer have prefixed symbols.Eduardo Julian1-104/+116
2015-08-05- The compiler now stores the cursor of the last analysed AST in order to ↵Eduardo Julian1-12/+24
avoid the problem of error ocurring "nowhere" (at ["" -1 -1]).
2015-08-04- Struct definition no longer required prefixed members (now, it actually ↵Eduardo Julian1-227/+242
prohibits them).
2015-08-04- Renamed the Syntax type to AST.Eduardo Julian1-158/+158
- Created the lux/meta/ast module.
2015-08-04- Added a macro for exporting definitions (to not depend on the #export tag ↵Eduardo Julian1-19/+35
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 Julian1-7/+17
- Value definitions inside the compiler data now hold the value itself. - Fixed a few bugs.
2015-08-02- Added a module for hashing.Eduardo Julian1-221/+340
- 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 Julian1-504/+611
- 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 Julian1-2/+2
- 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 Julian1-13/+14
- 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 Julian1-39/+78
(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 Julian1-5/+5
- "input" has been renamed as "source" and "output" has been renamed as "target".
2015-07-25/cache and /output now using same format.Eduardo Julian1-38/+10
2015-07-24- Removed the "seen-sources" field from the compiler state.Eduardo Julian1-17/+19
- Fixed the caching mechanism.
2015-07-21- Added a way to pass the cursor from un-expanded macro-forms to their ↵Eduardo Julian1-18/+87
expansions in order to aid error-reporting. - Added recursive type definitions through the #rec tag in deftype.
2015-07-19- Some bug fixes.Eduardo Julian1-135/+158
- More additions to the standard library.
2015-07-14- Added a ' (quote) macro that works like ` (backquote), without unquote or ↵Eduardo Julian1-38/+50
unquote splice working and not automatic prefixing of unprefixed symbols/tags. - Added (slightly) better type-error messages.
2015-07-12- Added the beginnings of the standard library.Eduardo Julian1-399/+1001
- Fixed several bugs.
2015-06-21- The backwards analysis of function application is back.Eduardo Julian1-351/+282
2015-06-20- The directory for source-code is now named "input".Eduardo Julian1-11/+15
- 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 Julian1-6/+7
- 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 Julian1-999/+1070
- 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 Julian1-13/+33
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 Julian1-1153/+1164
host's. - Made a few optimizations to speed-up the now slowed-down compiler.
2015-05-10- Now analysing function-application backwards.Eduardo Julian1-374/+308
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 Julian1-14/+138
- 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 Julian1-87/+125
- 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.