Add overload merging: duck-typed dispatch for overloaded members (C) (14/20) - #114
Draft
jbcoe wants to merge 1 commit into
Draft
Add overload merging: duck-typed dispatch for overloaded members (C) (14/20)#114jbcoe wants to merge 1 commit into
jbcoe wants to merge 1 commit into
Conversation
jbcoe
force-pushed
the
reflection/12-interface-a
branch
from
July 28, 2026 11:33
596d5c4 to
aa1bba2
Compare
jbcoe
force-pushed
the
reflection/13-overload-merging
branch
from
July 28, 2026 11:33
252c3a2 to
74a2f40
Compare
jbcoe
force-pushed
the
reflection/12-interface-a
branch
from
July 28, 2026 14:22
aa1bba2 to
ddf86c4
Compare
jbcoe
force-pushed
the
reflection/13-overload-merging
branch
from
July 28, 2026 14:22
74a2f40 to
96fa91f
Compare
jbcoe
force-pushed
the
reflection/12-interface-a
branch
from
July 28, 2026 14:29
ddf86c4 to
3626de6
Compare
jbcoe
force-pushed
the
reflection/13-overload-merging
branch
from
July 28, 2026 14:29
96fa91f to
0c46cf3
Compare
jbcoe
force-pushed
the
reflection/12-interface-a
branch
from
July 28, 2026 15:14
3626de6 to
cd758f6
Compare
jbcoe
force-pushed
the
reflection/13-overload-merging
branch
from
July 28, 2026 15:14
0c46cf3 to
5645a91
Compare
jbcoe
force-pushed
the
reflection/12-interface-a
branch
from
July 28, 2026 15:28
cd758f6 to
843a633
Compare
jbcoe
force-pushed
the
reflection/13-overload-merging
branch
from
July 28, 2026 15:28
5645a91 to
7f1977b
Compare
jbcoe
force-pushed
the
reflection/12-interface-a
branch
from
July 28, 2026 18:27
843a633 to
1430e4c
Compare
jbcoe
force-pushed
the
reflection/13-overload-merging
branch
from
July 28, 2026 18:27
7f1977b to
0ce30ba
Compare
jbcoe
force-pushed
the
reflection/12-interface-a
branch
from
July 28, 2026 19:37
1430e4c to
0dc2111
Compare
jbcoe
force-pushed
the
reflection/13-overload-merging
branch
from
July 28, 2026 19:37
0ce30ba to
8fa585b
Compare
jbcoe
force-pushed
the
reflection/12-interface-a
branch
from
July 28, 2026 20:23
0dc2111 to
9f9f82b
Compare
jbcoe
force-pushed
the
reflection/13-overload-merging
branch
from
July 28, 2026 20:23
8fa585b to
f1954b2
Compare
jbcoe
force-pushed
the
reflection/12-interface-a
branch
from
July 29, 2026 09:48
9f9f82b to
29a2a8e
Compare
jbcoe
force-pushed
the
reflection/13-overload-merging
branch
from
July 29, 2026 09:48
f1954b2 to
ffa81d8
Compare
vtable_entry_name (identifier-only) names a forwarder's public-facing data member, so overloads of the same name stay merged into one callable; vtable_slot_name (signature-qualified, via display_string_of) is added for the internal vtable struct, which needs one distinct entry per exact overload instead.
jbcoe
force-pushed
the
reflection/12-interface-a
branch
from
July 29, 2026 10:14
29a2a8e to
baaeb99
Compare
jbcoe
force-pushed
the
reflection/13-overload-merging
branch
from
July 29, 2026 10:14
ffa81d8 to
636937a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
vtable_entry_name (identifier-only) names a forwarder's public-facing
data member, so overloads of the same name stay merged into one
callable; vtable_slot_name (signature-qualified, via
display_string_of) is added for the internal vtable struct, which
needs one distinct entry per exact overload instead.