Property definitions

github $ IssueEventRepo :: defaultinit
class IssueEventRepo
	super MongoRepository[IssueEvent]

	fun find_by_repo(repo: Repo): Array[IssueEvent] do
		return find_all((new MongoMatch).eq("repo.full_name", repo.full_name))
	end
end
lib/github/loader.nit:545,1--551,3