Returns the content of this node without the surrounding { and}

Property definitions

nitc :: light_ffi_base $ TExternCodeSegment :: without_guard
	# Returns the content of this node without the surrounding `{ and `}
	fun without_guard: String
	do
		assert text.length >= 4
		return text.substring(2, text.length-4)
	end
src/ffi/light_ffi_base.nit:148,2--153,4