Property definitions

github $ IssueCommentEvent :: defaultinit
# Triggered when an issue comment is created.
class IssueCommentEvent
	super GithubEvent
	serialize

	# `Issue` the comment belongs to.
	var issue: Issue is writable

	# The `Comment` itself.
	var comment: IssueComment is writable
end
lib/github/events.nit:133,1--143,3