Property definitions

core $ Stdin :: defaultinit
# Standard input stream.
#
# The class of the default value of `sys.stdin`.
class Stdin
	super FileReader

	init do
		_file = new NativeFile.native_stdin
		path = "/dev/stdin"
	end
end
lib/core/file.nit:326,1--336,3