Moves away from @_exported import to add the import in the generated code (#8637)

This commit is contained in:
mustiikhalil
2025-07-16 21:07:08 +02:00
committed by GitHub
parent c7b9dc83f5
commit 07c2eb5fe7
25 changed files with 110 additions and 34 deletions

View File

@@ -15,7 +15,7 @@
*/
#if canImport(Common)
@_exported import Common
import Common
#endif
import Foundation

View File

@@ -13,6 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#if canImport(Common)
import Common
#endif
import Foundation

View File

@@ -13,6 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#if canImport(Common)
import Common
#endif
import Foundation

View File

@@ -13,6 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#if canImport(Common)
import Common
#endif
import Foundation

View File

@@ -13,6 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#if canImport(Common)
import Common
#endif
import Foundation

View File

@@ -13,6 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#if canImport(Common)
import Common
#endif
import Foundation

View File

@@ -14,6 +14,10 @@
* limitations under the License.
*/
#if canImport(Common)
import Common
#endif
import Foundation
/// Verifiable is a protocol all swift flatbuffers object should conform to,

View File

@@ -14,6 +14,10 @@
* limitations under the License.
*/
#if canImport(Common)
import Common
#endif
import Foundation
/// `ByteBuffer` is the interface that stores the data for a `Flatbuffers` object