Created
February 27, 2017 23:15
-
-
Save shaps80/a18c958f219eb137c1349278d100806e to your computer and use it in GitHub Desktop.
This file contains 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
final class Example { | |
func emptyTask() { | |
TODO | |
} | |
func slowTask() { | |
FIXME | |
print("This still executes") | |
} | |
} |
This file contains 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
@available(*, deprecated, message: "Unimplemented code") | |
var TODO: Never { | |
fatalError("Unimplemented") | |
} | |
@available(*, deprecated, message: "Fix this code") | |
var FIXME: Void { return } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment