Property definitions

core $ PollableReader :: defaultinit
# `Reader` capable of declaring if readable without blocking
abstract class PollableReader
	super Reader

	# Is there something to read? (without blocking)
	fun poll_in: Bool is abstract

end
lib/core/stream.nit:512,1--519,3