Skip to content

Instantly share code, notes, and snippets.

@bendk
Created November 29, 2021 16:04
Show Gist options
  • Save bendk/9afdb7932013618ed37054b43952af3c to your computer and use it in GitHub Desktop.
Save bendk/9afdb7932013618ed37054b43952af3c to your computer and use it in GitHub Desktop.
namespace maker {};
[Error]
enum MakerError {
"OutOfResources",
};
[Decorated=MyDecoratedInterface]
interface MyInterface {
constructor();
[CallsWith=catch_all]
[Throws=MakerError]
string string_maker();
[CallsWith=catch_all]
[Throws=MakerError]
bool boolmaker();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment