summary refs log tree commit diff stats
path: root/compiler/ast.nim
Commit message (Collapse)AuthorAgeFilesLines
* added system.compilesAraq2012-07-201-1/+2
|
* got rid of some mAddU64 etc. magicsAraq2012-07-201-2/+2
|
* removed nimdat in favor of per-module dat init procsZahary Karadjov2012-07-191-0/+2
|
* make tests green againAraq2012-07-171-1/+1
|
* work on closures continues; fixed #116Araq2012-07-131-3/+1
|
* 'addSon' for types deprecated for 'int literal type' analysisAraq2012-07-091-6/+9
|
* changed integer promotion rules; breaks bootstrapping and lots of codeAraq2012-07-081-1/+2
|
* changed integer promotion rules; added math.fmodAraq2012-06-281-4/+3
|
* documentation improvements; added system.gorge (for Araq's fun)Araq2012-06-221-0/+2
|
* Merge branch 'master' of github.com:Araq/NimrodAraq2012-06-191-15/+28
|\
| * more uint related fixesZahary Karadjov2012-06-141-1/+2
| |
| * better support for unsigned integers.Zahary Karadjov2012-06-111-15/+25
| |
| * destructor pragmaZahary Karadjov2012-06-071-0/+1
| |
| * destructors for case valuesZahary Karadjov2012-06-071-0/+1
| |
* | first implementation of new lambda liftingAraq2012-06-151-0/+3
|/
* Merge branch 'master' of github.com:Araq/Nimrod into upstreamZahary Karadjov2012-06-021-1/+2
|\
| * added system.||; lacks runtime supportAraq2012-05-231-1/+2
| |
* | Added system.staticExec proc for executing external command at compile-timeZahary Karadjov2012-06-021-1/+14
| |
* | codegen for user-defined destructorsZahary Karadjov2012-05-251-0/+3
|/
* experimental support for preserving local variable names in the generated codeZahary Karadjov2012-04-131-10/+18
|
* the foundations of a type traits module; better error messages for expr, ↵Zahary Karadjov2012-04-061-1/+7
| | | | typedesc and typeclasses params
* when expressions, proper rendering for nkDo and nkLambda and parser support ↵Zahary Karadjov2012-04-051-1/+6
| | | | for x.type and x.addr
* Merge branch 'master' of github.com:Araq/Nimrod into upstreamZahary Karadjov2012-03-311-3/+2
|\
| * some bugfixes for symbolfilesAraq2012-03-231-3/+2
| |
* | typedesc and expr paramsZahary Karadjov2012-03-311-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | generic types can be used like type classes. distinct can be applied to type ↵Zahary Karadjov2012-03-251-0/+2
| | | | | | | | classes.
* | tyOrdinal now means "integral types". tyTypeClass created to take care of ↵Zahary Karadjov2012-03-221-1/+2
|/ | | | type constraints
* missed file from the previous commitZahary Karadjov2012-03-191-0/+7
|
* merged branch overloading-for-macrosZahary Karadjov2012-03-191-1/+5
|\
| * the test suite is mostly green againZahary Karadjov2012-03-161-18/+0
| |
| * bootstraps fine with overloadable templatesZahary Karadjov2012-03-141-1/+23
| |
* | implemented 'static'; macros do not work anymoreAraq2012-03-151-1/+3
| |
* | first steps for cleaner static/const distinctionAraq2012-03-131-0/+30
|/
* `do' keyword in the grammar for lambda blocksZahary Karadjov2012-02-101-0/+3
|
* further steps to closure supportAraq2012-02-061-2/+8
|
* closure implementation: first stepsAraq2012-02-041-1/+11
|
* pragma blocks; fixed line information issue with user defined assertionsAraq2012-01-171-1/+3
|
* niminst: bugfixes; documentation changesAraq2012-01-151-1/+1
|
* bugfix: invalid indentation for 'else' is detected; optional indentation for ↵Araq2012-01-131-1/+1
| | | | 'if' expressions
* bugfix: tests/reject/tnoinst.nim is now rejected properlyAraq2012-01-131-0/+6
|
* bugfix: removed newSons legacyAraq2012-01-071-7/+10
|
* implemented incompleteStruct pragma; embedded debugger works with posix moduleAraq2012-01-051-0/+1
|
* year 2012 for most copyright headersAraq2012-01-021-1/+1
|
* bugfix: the code gen can now handle alias TLock = TSysLock; this fixes ↵Araq2011-12-231-0/+16
| | | | threading bugs
* code gen can generate code to keep alive stack rootsAraq2011-12-221-0/+1
|
* alias analysis as required for the code gen and the HLOAraq2011-12-081-31/+2
|
* 'assert' is now implemented without compiler magicAraq2011-12-041-1/+2
|
* implemented 'let' statementAraq2011-11-291-3/+4
|
* new pragma: 'noinit'Araq2011-11-251-1/+2
|
* bugfix: 'when' sections in generic objects now work, so TThread[void] compilesAraq2011-11-201-1/+1
|