Content of the entity, without prefix nor suffix

Property definitions

nitc $ AAugmentedLiteral :: content
	# Content of the entity, without prefix nor suffix
	protected var content: String is lazy do
		var npr = text.substring_from(prefix.length)
		return npr.substring(0, npr.length - suffix.length)
	end
src/literal.nit:116,2--120,4