Skip to content

Commit

Permalink
🐞 Fix: DictionaryRepresentationSynthesizing
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Sep 27, 2024
1 parent 85658e9 commit 0dc8187
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ios/Temp/DictionaryRepresentationSynthesizing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public protocol DictionaryRepresentationSynthesizing {
// MARK: - DictionaryRepresentationSynthesizing+StaticDefault
// ---------------------------------------------------------

extension DictionaryRepresentationSynthesizing {
public extension DictionaryRepresentationSynthesizing {

// MARK: - Static Properties
// -------------------------
Expand All @@ -48,26 +48,26 @@ extension DictionaryRepresentationSynthesizing {
return nil;
};

public static var synthesizedDictionaryIgnore: [String] {
static var synthesizedDictionaryIgnore: [String] {
return [];
};

public static var synthesizedDictionaryInlinedProperties: [PartialKeyPath<Self>] {
static var synthesizedDictionaryInlinedProperties: [PartialKeyPath<Self>] {
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<Self>] {
static var synthesizedDictionaryInlinedProperties: [PartialKeyPath<Self>] {
return [];
};
};
Expand Down

0 comments on commit 0dc8187

Please sign in to comment.