summary refs log tree commit diff stats
path: root/compiler
Commit message (Collapse)AuthorAgeFilesLines
* fixes #6127Andreas Rumpf2017-07-221-5/+3
|
* fixes #499Andreas Rumpf2017-07-221-1/+1
|
* closures have an object type field so that we can perform correct deepCopy() ↵Andreas Rumpf2017-07-224-14/+18
| | | | for the BoehmGC target
* fixes #6096Araq2017-07-171-1/+1
|
* fixes #5892Araq2017-07-171-4/+8
|
* cleaned up extccomp.nimAraq2017-07-171-10/+0
|
* fixes #6118Araq2017-07-171-4/+6
|
* fixes #4763Araq2017-07-172-11/+20
|
* fixes #5989Araq2017-07-171-2/+2
|
* Lineinfo change (#6084)Arne Döring2017-07-174-7/+28
|
* fixes anon procs created by macrosAndreas Rumpf2017-07-111-1/+3
|
* parser enhancement: allow keywords after dotsAndreas Rumpf2017-07-111-18/+28
|
* fixes a JS codegen regressionAndreas Rumpf2017-07-101-3/+23
|
* fixes #4898Andreas Rumpf2017-07-091-3/+10
|
* fixes #5608Andreas Rumpf2017-07-091-0/+4
|
* fixes #6037Andreas Rumpf2017-07-091-1/+8
|
* fixes #6067Andreas Rumpf2017-07-081-1/+2
|
* minor code cleanupAndreas Rumpf2017-07-081-7/+1
|
* Fixes #6008 (#6068)Mathijs Saey2017-07-081-0/+4
|
* bugfix: keep the information of a raw float literal in the ASTAndreas Rumpf2017-07-062-6/+7
|
* do not crash for #5895Andreas Rumpf2017-07-061-1/+1
|
* fixes #6030 (#6042)ephja2017-07-011-7/+10
|
* fixes #6035Araq2017-06-302-2/+6
|
* fixes #5517Andreas Rumpf2017-06-301-0/+2
|
* fixes #5974Andreas Rumpf2017-06-291-4/+8
|
* fixes #5563Andreas Rumpf2017-06-291-3/+3
|
* fixes #4703Andreas Rumpf2017-06-291-1/+10
|
* fixes #5846Andreas Rumpf2017-06-291-2/+3
|
* Fixes #5946 (#6017)Yuriy Glukhov2017-06-261-2/+3
|
* JS gen: fixes regressionAndreas Rumpf2017-06-261-7/+15
|
* Fix #5084Zahary Karadjov2017-06-201-3/+6
|
* Fix #5983Zahary Karadjov2017-06-202-1/+10
|
* Fix #5888Zahary Karadjov2017-06-203-2/+7
|
* Fix #4737Zahary Karadjov2017-06-203-5/+15
|
* Fix #5127Zahary Karadjov2017-06-202-6/+7
|
* Fix #4020; Better handling of templates within conceptsZahary Karadjov2017-06-204-2/+9
|
* fix #5968Zahary Karadjov2017-06-201-1/+3
|
* fix #1082Zahary Karadjov2017-06-201-2/+4
|
* fix #1017; fix #3309Zahary Karadjov2017-06-202-1/+8
|
* fix #2730; fix #4880Zahary Karadjov2017-06-202-1/+9
|
* fix #5017; fix #5893Zahary Karadjov2017-06-201-1/+3
|
* fix #5864Zahary Karadjov2017-06-201-0/+2
|
* add a useful helper for debugging typeRel problemsZahary Karadjov2017-06-201-4/+26
|
* Fix #5962Zahary Karadjov2017-06-202-16/+52
| | | | | | | | | | | | | | | During the instantiation of a generic type A, some other generic type B may be instantiated multiple times with different parameters. We can think about each instantiation as a function call that should temporary bind the parameter names to concrete types. The problem with the existing implementation in semtypinst was that it was performing this binding within a shared global table. In this sense, it was executing the code as a programming language featuring only global variables. In such a language, re-entrant functions cannot be defined properly and hence this was leading to problems with similar types. The solution is simple - just like we need to introduce stack frames to handle re-entrant functions, we introduce a stack of type bindings that are pushed and popped during the generic instantiations.
* introduce a pre-processing pass for the concept bodiesZahary Karadjov2017-06-2011-60/+98
| | | | | | | fixes #4982 fixes #3805 close #3414
* fix #5890Zahary Karadjov2017-06-201-1/+2
|
* Fixes #5995Yuriy Glukhov2017-06-181-1/+1
|
* Ascii character code 127 (DEL) is not printable and must be quoted. (#5984)Markus F.X.J. Oberhumer2017-06-151-1/+1
| | | This is a follow-up to #5823.
* Merge branch 'devel' of github.com:nim-lang/Nim into develAndreas Rumpf2017-06-136-6/+28
|\
| * cgen: #undef some more predefined symbols. (#5831)Markus F.X.J. Oberhumer2017-06-131-0/+10
| | | | | | This is a followup to issue #5171.