This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//===----------------------------------------------------------------------===// | |
// | |
// This source file is a modification of the PropertyListEncoder from the Swift project. | |
// The modification consists of skipping the final serialization into binary format (in the encode function) and instead returning the dictionary representation of the object to be encoded. | |
// | |
//===----------------------------------------------------------------------===// | |
import Foundation | |
//===----------------------------------------------------------------------===// |