Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | next steps for tyVarargs/tyOpenArray split | Araq | 2012-08-14 | 1 | -3/+5 |
| | |||||
* | more bugfixes for closures | Araq | 2012-08-14 | 1 | -2/+1 |
| | |||||
* | made tests green again | Araq | 2012-08-14 | 1 | -1/+3 |
| | |||||
* | top level closures should work; transf is not a pass anymore; next steps for ↵ | Araq | 2012-08-13 | 1 | -11/+6 |
| | | | | first class iterator support | ||||
* | idetools: '--def' now works in 'x.f' | Araq | 2012-08-05 | 1 | -3/+3 |
| | |||||
* | idetools: 'usages' and 'def' should work now; documented js backend | Araq | 2012-08-05 | 1 | -28/+38 |
| | |||||
* | idetools: don't suggest module names or not visible object fields | Araq | 2012-08-03 | 1 | -4/+2 |
| | |||||
* | idetools improvements | Araq | 2012-08-03 | 1 | -0/+1 |
| | |||||
* | made compiler more robust for idetools; implemented idetools.usages | Araq | 2012-07-30 | 1 | -7/+15 |
| | |||||
* | more improvements for idetools | Araq | 2012-07-30 | 1 | -3/+3 |
| | |||||
* | better error handling for better idetools support | Araq | 2012-07-29 | 1 | -71/+93 |
| | |||||
* | better overloading capabilities for 'shallowCopy'; little bugfix for ↵ | Araq | 2012-07-29 | 1 | -12/+13 |
| | | | | 'system.compiles' | ||||
* | improvements for idetools; system.compiles improved | Araq | 2012-07-29 | 1 | -0/+14 |
| | |||||
* | fixes #178 | Araq | 2012-07-28 | 1 | -5/+10 |
| | |||||
* | implements #173 | Araq | 2012-07-28 | 1 | -3/+13 |
| | |||||
* | next steps for closure consistency; fixes #176 | Araq | 2012-07-25 | 1 | -1/+1 |
| | |||||
* | optimizations for system.compiles | Araq | 2012-07-20 | 1 | -8/+12 |
| | |||||
* | added system.compiles | Araq | 2012-07-20 | 1 | -0/+30 |
| | |||||
* | equality and hashing for closures | Araq | 2012-07-17 | 1 | -3/+4 |
| | |||||
* | fixes #147 | Araq | 2012-07-10 | 1 | -1/+2 |
| | |||||
* | some more bugfixes for the integer promotion rules | Araq | 2012-07-10 | 1 | -1/+1 |
| | |||||
* | 'addSon' for types deprecated for 'int literal type' analysis (3) | Araq | 2012-07-09 | 1 | -1/+1 |
| | |||||
* | 'addSon' for types deprecated for 'int literal type' analysis (2) | Araq | 2012-07-09 | 1 | -8/+8 |
| | |||||
* | changed integer promotion rules; breaks bootstrapping and lots of code | Araq | 2012-07-08 | 1 | -22/+39 |
| | |||||
* | added devel/logging; weakrefs test; next steps for proper unsigned support | Araq | 2012-07-05 | 1 | -0/+1 |
| | |||||
* | changed integer promotion rules; added math.fmod | Araq | 2012-06-28 | 1 | -22/+2 |
| | |||||
* | bugfixes for closures | Araq | 2012-06-21 | 1 | -5/+7 |
| | |||||
* | more uint related fixes | Zahary Karadjov | 2012-06-14 | 1 | -4/+10 |
| | |||||
* | better support for unsigned integers. | Zahary Karadjov | 2012-06-11 | 1 | -5/+31 |
| | |||||
* | Added system.staticExec proc for executing external command at compile-time | Zahary Karadjov | 2012-06-02 | 1 | -7/+1 |
| | |||||
* | fixes #103 | Araq | 2012-05-11 | 1 | -2/+3 |
| | |||||
* | fixes #111; however may introduce other problems | Araq | 2012-05-10 | 1 | -1/+6 |
| | |||||
* | fixes binding of overloaded procs | Araq | 2012-05-04 | 1 | -11/+19 |
| | |||||
* | completing the "types as first class values" reform | Zahary Karadjov | 2012-04-06 | 1 | -36/+47 |
| | |||||
* | the foundations of a type traits module; better error messages for expr, ↵ | Zahary Karadjov | 2012-04-06 | 1 | -5/+5 |
| | | | | typedesc and typeclasses params | ||||
* | when expressions, proper rendering for nkDo and nkLambda and parser support ↵ | Zahary Karadjov | 2012-04-05 | 1 | -0/+3 |
| | | | | for x.type and x.addr | ||||
* | Added ``global`` pragma that can be used to introduce new global variables ↵ | Zahary Karadjov | 2012-04-05 | 1 | -2/+4 |
| | | | | from within procs | ||||
* | typedesc and expr params | Zahary Karadjov | 2012-03-31 | 1 | -6/+36 |
| | | | | | | | | | | | | types are now valid proc/template/macro params and you can overload over them: proc foo(T: typedesc) # accept any type proc foo(T: typedesc{int}) # overload specifically for int proc foo(T: typedesc{int or float or Callable}) # overload for any type matching the constraints expr{type} is a param expecting compile time value of the designated type (or type class). when typedesc or expr params are used with a proc, the proc will be instantiated once for each unique type/value used as parameter. | ||||
* | genSym support for hygienic macros and templates. | Zahary Karadjov | 2012-03-26 | 1 | -1/+1 |
| | | | | | | | | | example: template hygienic(val: expr) = var `*x` = val echo `*x` *x was chosen as mnemonic for "opposite of public" and thus private | ||||
* | making tests green again | Zahary Karadjov | 2012-03-20 | 1 | -2/+2 |
| | |||||
* | merged branch overloading-for-macros | Zahary Karadjov | 2012-03-19 | 1 | -37/+63 |
|\ | |||||
| * | the test suite is mostly green again | Zahary Karadjov | 2012-03-16 | 1 | -12/+11 |
| | | |||||
| * | fix for template redefinition. test cases added. | Zahary Karadjov | 2012-03-15 | 1 | -1/+0 |
| | | |||||
| * | bootstraps fine with overloadable templates | Zahary Karadjov | 2012-03-14 | 1 | -30/+74 |
| | | |||||
* | | implemented 'static'; macros do not work anymore | Araq | 2012-03-15 | 1 | -1/+9 |
| | | |||||
* | | first steps for cleaner static/const distinction | Araq | 2012-03-13 | 1 | -1/+36 |
|/ | |||||
* | fixes #100 | Araq | 2012-03-10 | 1 | -1/+1 |
| | |||||
* | ERecoverableError exception contains the error message | Araq | 2012-02-25 | 1 | -2/+2 |
| | |||||
* | `do' keyword in the grammar for lambda blocks | Zahary Karadjov | 2012-02-10 | 1 | -1/+1 |
| | |||||
* | further steps for closure support | Araq | 2012-02-08 | 1 | -1/+2 |
| |