- Adds support for throws clauese identifier type to
EffectsSpecifierstype.
For example,
func executeOrder66() throws(SpecificErrorType) {}can be accessed via:
// Function type
function.signature.effectSpecifiers?.throwsSpecifier // String? - "SpecificErrorType"
function.throwsIdentifier // String? - "SpecificErrorType"- Full Changelog: 6.0.2...6.1.0