summary refs log tree commit diff stats
path: root/compiler/vtables.nim
Commit message (Collapse)AuthorAgeFilesLines
* types refactoring; WIP (#23086)Andreas Rumpf2023-12-171-1/+1
|
* type refactoring: part 2 (#23059)Andreas Rumpf2023-12-131-167/+167
|
* Types: Refactorings; step 1 (#23055)Andreas Rumpf2023-12-121-4/+4
|
* rework the vtable implementation embedding the vtable array directly with ↵ringabout2023-11-281-0/+167
new strictions on methods (#22991) **TODO** - [x] fixes changelog With the new option `nimPreviewVtables`, `methods` are confined in the same module where the type of the first parameter is defined - [x] make it opt in after CI checks its feasibility ## In the following-up PRs - [ ] in the following PRs, refactor code into a more efficient one - [ ] cpp needs special treatments since it cannot embed array in light of the preceding limits: ref https://github.com/nim-lang/Nim/pull/20977#discussion_r1035528927; we can support cpp backends with vtable implementations later on the comprise that uses indirect vtable access --------- Co-authored-by: Andreas Rumpf <rumpf_a@web.de>