mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This enables us to lookup a function from a key by avoiding the need to create an identifier inside the OnDiskHashTable structure. Doing so would require an ASTContext, something that is not available therein. As a side effect this also makes OnDiskHashTable more efficient by just using a StringRef reference instead of creating a uniqued identifier in the AST for every deserialized node in the table. Swift SVN r14169