I'm trying to set some convenience variable in a swift context and to access it from a ObjC context.
(lldb) expression -l swift -- var $answerSwift = 42
(lldb) expression -o -l swift -- $answerSwift
42
(lldb) expression -o -l objc -- $answerSwift
error: use of undeclared identifier '$answerSwift'
The other way around works perfectly fine:
(lldb) expression -l objc -- int $answerObjc = 42
(lldb) expression -o -l swift -- $answerObjc
42
How can I move a value from the swift scope (?) to the objC scope?
@objcto the Swift expression doesn't even parse.)