-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Stack traces should include parameter names #73051
Labels
Milestone
Comments
MichalStrehovsky
added
help wanted
[up-for-grabs] Good issue for external contributors
area-NativeAOT-coreclr
labels
Jul 29, 2022
I would like to take a stab at it. Feel free to assign me. |
It is yours! |
jasper-d
added a commit
to jasper-d/runtime
that referenced
this issue
Aug 5, 2022
ghost
added
the
in-pr
There is an active PR which will close this issue when it is merged
label
Aug 8, 2022
MichalStrehovsky
pushed a commit
that referenced
this issue
Aug 18, 2022
ghost
removed
the
in-pr
There is an active PR which will close this issue when it is merged
label
Aug 18, 2022
ghost
locked as resolved and limited conversation to collaborators
Sep 17, 2022
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
EnvironmentStackTrace.StackTraceTest
test expects parameter names to show up. We don't print them even if we have them.The original motivation was consistency - we don't necessarily have them.
But since then, IL Linker started removing parameter names for methods that are not demonstratable targets of reflection. This matches what we do. We can just start printing them if we have MethodDefinition metadata (and keep not printing them if we don't have it).
The fix will be in src\coreclr\nativeaot\System.Private.StackTraceMetadata\src\Internal\StackTraceMetadata\MethodNameFormatter.cs.
The text was updated successfully, but these errors were encountered: