Returns the content of this node without both of the surrounding "

Property definitions

nitc :: light_ffi_base $ TString :: without_quotes
	# Returns the content of this node without both of the surrounding "
	fun without_quotes: String
	do
		assert text.length >= 2
		return text.substring(1, text.length-2)
	end
src/ffi/light_ffi_base.nit:139,2--144,4