You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[lldb] Fix the computation of the hidden/in_user_code flag
in Swift expression evaluator diagnostics.
Before:
```
-> 11 let f = Foo()
12 bar(f)
Target 0: (test) stopped.
(lldb) p init
^
|error: initializers may only be declared within a type
╰─ error: expected '(' for initializer parameters
(lldb) b init
```
After:
```
-> 11 let f = Foo()
12 bar(f)
Target 0: (test) stopped.
(lldb) p init
˄
╰─ error: expected '(' for initializer parameters
(lldb) b init
```
0 commit comments