Skip to content

6.1.0

Latest

Choose a tag to compare

@mobrien-ghost mobrien-ghost released this 04 Mar 07:15
· 0 commits to develop since this release
  • Adds support for throws clauese identifier type to EffectsSpecifiers type.

For example,

func executeOrder66() throws(SpecificErrorType) {}

can be accessed via:

// Function type
function.signature.effectSpecifiers?.throwsSpecifier // String? - "SpecificErrorType"
function.throwsIdentifier // String? - "SpecificErrorType"