Source code associated to this MEntity.

Uses cs_location to locate the source code.

Property definitions

nitc :: term_model $ MEntity :: cs_source_code
	# Source code associated to this MEntity.
	#
	# Uses `cs_location` to locate the source code.
	fun cs_source_code: String do
		var tpl = new Buffer
		tpl.append "\n~~~\n"
		tpl.append location.text
		tpl.append "\n~~~\n"
		return tpl.write_to_string
	end
src/doc/templates/term_model.nit:136,2--145,4