Property definitions

nitc :: vim_autocomplete $ MEntity :: write_signature_to_stream
	private fun write_signature_to_stream(stream: Writer) do end
src/doc/vim_autocomplete.nit:90,2--61

nitc :: vim_autocomplete $ MAttributeDef :: write_signature_to_stream
	redef fun write_signature_to_stream(stream)
	do
		var static_mtype = static_mtype
		if static_mtype != null then
			stream.write stream.to_s
		end
	end
src/doc/vim_autocomplete.nit:142,2--148,4

nitc :: vim_autocomplete $ MMethodDef :: write_signature_to_stream
	redef fun write_signature_to_stream(stream)
	do
		var msignature = msignature
		if msignature != null then
			stream.write msignature.to_s
		end
	end
src/doc/vim_autocomplete.nit:112,2--118,4