-
Notifications
You must be signed in to change notification settings - Fork 0
feat(extractor): P-014 Tier B — external reference resolution via --ref-dir #109
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
Merged
Merged
Changes from all commits
Commits
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| // P-014 Tier B — proof that external-reference resolution flips an event from "unchecked" | ||
| // to a real, resolved subscription. `TierBSubscriber` holds a long-lived reference to a | ||
| // CommunityToolkit.Mvvm `ObservableObject` (a THIRD-PARTY type, not in the framework set) | ||
| // and subscribes to its `PropertyChanged` without ever `-=`'ing it. | ||
| // | ||
| // WITHOUT --ref-dir : CommunityToolkit.Mvvm.dll is not referenced, so `ObservableObject` | ||
| // is an error type and `_vm.PropertyChanged += ...` cannot bind to an | ||
| // event symbol -> the extractor emits the advisory OWN050 ("leakage | ||
| // analysis skipped"), NEVER a guessed leak. | ||
| // WITH --ref-dir : the package DLL is referenced, the SemanticModel binds PropertyChanged | ||
| // to an IEventSymbol, and the un-detached subscription is a real OWN001 | ||
| // leak (warning-tier — the source is injected, of unknown lifetime). | ||
| // | ||
| // Same source, two reference sets, two verdicts: the A/B delta is the Tier B proof. Roslyn reads | ||
| // metadata only, so this resolves a .NET Framework `bin/` exactly as a modern-.NET one — only the | ||
| // referenced DLLs differ. Exercised by the `tier-b-refs` CI job (ci.yml). | ||
| using System.ComponentModel; | ||
| using CommunityToolkit.Mvvm.ComponentModel; | ||
|
|
||
| namespace TierBSample | ||
| { | ||
| public sealed class TierBSubscriber | ||
| { | ||
| private readonly ObservableObject _vm; | ||
|
|
||
| public TierBSubscriber(ObservableObject vm) | ||
| { | ||
| _vm = vm; | ||
| _vm.PropertyChanged += OnChanged; // subscribed, never -='d | ||
Check noticeCode scanning / Own.NET declaring type unresolved -- leakage analysis skipped Note
cannot verify '_vm.PropertyChanged' — its declaring type is an unresolved reference (build the project or pass references); leakage analysis skipped [resource: unresolved reference]
|
||
|
|
||
| } | ||
|
|
||
| private void OnChanged(object? sender, PropertyChangedEventArgs e) { } | ||
| } | ||
| } | ||
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.
Uh oh!
There was an error while loading. Please reload this page.