Suffix for the entity, "" if no prefix is found

Property definitions

nitc $ AAugmentedLiteral :: suffix
	# Suffix for the entity, "" if no prefix is found
	protected var suffix: String is lazy do return text.substring_from(text.last_index_of(delimiter_end) + 1)
src/literal.nit:113,2--114,106

nitc :: literal $ ASuperstringExpr :: suffix
	redef var suffix is lazy do
		var lst = n_exprs.last
		# Forces the system to update the delimiter's value
		prefix
		if lst isa AugmentedStringFormExpr then
			lst.delimiter_end = delimiter_start
			return lst.suffix
		end
		return ""
	end
src/literal.nit:293,2--302,4

nitc :: literal $ AStartStringExpr :: suffix
	redef fun suffix do return ""
src/literal.nit:241,2--30

nitc :: literal $ AMidStringExpr :: suffix
	redef fun suffix do return ""
src/literal.nit:246,2--30