From 0dc8187221044ea49c15dff1413c7bc49e8a3aa8 Mon Sep 17 00:00:00 2001 From: Dominic Go Date: Fri, 27 Sep 2024 18:11:44 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20Fix:=20`DictionaryRepresentation?= =?UTF-8?q?Synthesizing`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ios/Temp/DictionaryRepresentationSynthesizing.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ios/Temp/DictionaryRepresentationSynthesizing.swift b/ios/Temp/DictionaryRepresentationSynthesizing.swift index 7d047c72..d03cb64c 100644 --- a/ios/Temp/DictionaryRepresentationSynthesizing.swift +++ b/ios/Temp/DictionaryRepresentationSynthesizing.swift @@ -39,7 +39,7 @@ public protocol DictionaryRepresentationSynthesizing { // MARK: - DictionaryRepresentationSynthesizing+StaticDefault // --------------------------------------------------------- -extension DictionaryRepresentationSynthesizing { +public extension DictionaryRepresentationSynthesizing { // MARK: - Static Properties // ------------------------- @@ -48,26 +48,26 @@ extension DictionaryRepresentationSynthesizing { return nil; }; - public static var synthesizedDictionaryIgnore: [String] { + static var synthesizedDictionaryIgnore: [String] { return []; }; - public static var synthesizedDictionaryInlinedProperties: [PartialKeyPath] { + static var synthesizedDictionaryInlinedProperties: [PartialKeyPath] { return []; }; }; -extension DictionaryRepresentationSynthesizing where Self: StringKeyPathMapping { +public extension DictionaryRepresentationSynthesizing where Self: StringKeyPathMapping { static var synthesizedDictionaryExtraItemsKeyPathMap: StringToPartialKeyPathMap? { return self.partialKeyPathMap; }; - public static var synthesizedDictionaryIgnore: [String] { + static var synthesizedDictionaryIgnore: [String] { return []; }; - public static var synthesizedDictionaryInlinedProperties: [PartialKeyPath] { + static var synthesizedDictionaryInlinedProperties: [PartialKeyPath] { return []; }; };