-
Notifications
You must be signed in to change notification settings - Fork 6
fix(extraction): bind a unique trait bound as the callee #1834
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
ScriptedAlchemy
wants to merge
24
commits into
cursor/false-edge-bare-receiver-4fd3
from
cursor/trait-call-callee-8fe0
Closed
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
7bd29d6
fix(extraction): bind a unique trait bound as the callee
cursoragent 3a86297
fix(global-db): replay an applied cursor coverage as a duplicate
ScriptedAlchemy d1da671
fix(session-temporal): page reads that were refusing stored results
ScriptedAlchemy 9e2f7be
Merge pull request #1842 from ScriptedAlchemy/fix/serve-stored-sessio…
ScriptedAlchemy dfbcb15
Merge remote-tracking branch 'origin/master' into fix/master-ci-green-3
ScriptedAlchemy fc4b848
style(global-db): format the observation collision tests
ScriptedAlchemy f550e77
fix(hermes): converge past refused rows instead of eternal skip
ScriptedAlchemy 278d18f
fix(ingest): treat a peer-covered cursor CAS loss as a no-op
ScriptedAlchemy 19ba2b6
test(codex): count replay index visits per thread
ScriptedAlchemy 9f8092d
test(ingest): keep the shared meta cache off its degraded mode
ScriptedAlchemy 822b181
fix(session-temporal): drop the no-op drop in the doctor test
ScriptedAlchemy 259256d
fix(session-temporal): count parent copies without loading the graph
ScriptedAlchemy e89091f
Merge pull request #1844 from ScriptedAlchemy/fix/refresh-copy-count
ScriptedAlchemy 4e1a203
Merge remote-tracking branch 'origin/master' into fix/master-ci-green-3
ScriptedAlchemy 8f33ad6
test(sessions): re-reasoned cursor replay is a duplicate
ScriptedAlchemy c39a2ed
fix(session-temporal): split observation prefetches that exceed a page
ScriptedAlchemy 8916a5d
Merge pull request #1845 from ScriptedAlchemy/fix/observation-prefetc…
ScriptedAlchemy 31b2add
Merge pull request #1797 from ScriptedAlchemy/fix/master-ci-green-3
ScriptedAlchemy 8babdf3
fix(session-temporal): reconstruct copies without a relation graph
ScriptedAlchemy dae2203
Merge pull request #1846 from ScriptedAlchemy/fix/refresh-missing-rel…
ScriptedAlchemy 6961c5d
Merge remote-tracking branch 'origin/master' into cursor/trait-call-c…
ScriptedAlchemy 7b61b4b
Merge remote-tracking branch 'origin/cursor/false-edge-bare-receiver-…
ScriptedAlchemy 250e318
chore(code-index): move Rust extraction to extractor.rust.v12
ScriptedAlchemy e3b140e
style(session-temporal): keep the test module last and rustfmt master
ScriptedAlchemy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A sole bound does not imply that every method callable on the parameter is declared by that trait. For example, with
trait Processor: Helper {}andfn f<T: Processor>(x: &T) { x.help(); }, Rust resolveshelptoHelper::help, but this substitution emitsProcessor::help; the exact owner-path resolver therefore cannot create the call edge toHelper::help. Blanket extension traits have the same issue. Preserve ambiguity or account for supertraits/method ownership instead of treating the unique written bound as the callee owner.AGENTS.md reference: AGENTS.md:L9-L12
Useful? React with 👍 / 👎.