Returns an empty Text of the right type

This method is used internally to get the right implementation of an empty string.

Property definitions

core $ Text :: empty
	# Returns an empty Text of the right type
	#
	# This method is used internally to get the right
	# implementation of an empty string.
	protected fun empty: SELFTYPE is abstract
lib/core/text/abstract_text.nit:92,2--96,42

core $ Concat :: empty
	redef fun empty do return ""
lib/core/text/ropes.nit:83,2--29

core $ FlatString :: empty
	redef fun empty do return "".as(FlatString)
lib/core/text/flat.nit:481,2--44

core $ FlatBuffer :: empty
	redef fun empty do return new Buffer
lib/core/text/flat.nit:989,2--37