Open
Description
In CASTBridging.cpp, we have quite a few calls to convertIdentifier
. We should check if we can eliminate them.
To do this, we have two options:
- Use C++ interop, remove
BridgedIdentifier
and passIdentifier
everywhere we currently passBridgedIdentifier
- Define a conversion initializer on
Identifier
that takes aBridgedIdentifier
so that we get implicit conversion fromBridgedIdentifier
toIdentifier
.