Property definitions

core $ Stderr :: defaultinit
# Standard error stream.
#
# The class of the default value of `sys.stderr`.
class Stderr
	super FileWriter
	init do
		_file = new NativeFile.native_stderr
		path = "/dev/stderr"
		_is_writable = true
	end
end
lib/core/file.nit:351,1--361,3