We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Array, string and e.g. Type have properties that are not supported in the debugger:
Beyond typical tests add null-condition checking tests, something of this kind:
[ConditionalFact(nameof(RunningOnChrome))] public async Task EvaluateNullPrimitivePropertiesPositive() => await CheckInspectLocalsAtBreakpointSite( $"DebuggerTests.EvaluateNullableProperties", "Evaluate", 11, "Evaluate", $"window.setTimeout(function() {{ invoke_static_method ('[debugger-test] DebuggerTests.EvaluateNullableProperties:Evaluate'); 1 }})", wait_for_event_fn: async (pause_location) => { var id = pause_location["callFrames"][0]["callFrameId"].Value<string>(); await EvaluateOnCallFrameAndCheck(id, ("str.Length", TNumber(9)) ("str?.Length", TNumber(9)), ("str!.Length", TNumber(9)), ("str_null?.Length", TObject("string", is_null: true)), ("str_null!.Length", TObject("string", is_null: true)) ); });
The text was updated successfully, but these errors were encountered:
Tagging subscribers to 'arch-wasm': @lewing See info in area-owners.md if you want to be subscribed.
arch-wasm, area-Debugger-mono
arch-wasm
area-Debugger-mono
Sorry, something went wrong.
Evaluation of propertie was solved in #67028 and null-conditional expressionsis a duplicate of: #69640.
ilonatommy
No branches or pull requests
Array, string and e.g. Type have properties that are not supported in the debugger:
Beyond typical tests add null-condition checking tests, something of this kind:
The text was updated successfully, but these errors were encountered: