Property definitions

core $ ASCIIFlatString :: full_data
	init full_data(items: CString, byte_length, from, length: Int) do
		self._items = items
		self._length = length
		self._byte_length = byte_length
		_first_byte = from
		_bytepos = from
	end
lib/core/text/flat.nit:689,2--695,4

text_stat :: text_stat $ ASCIIFlatString :: full_data
	redef init full_data(items, byte_length, from, length)
	do
		super
		sys.asciiflatstr_allocations += 1
		sys.str_full_created += 1
	end
lib/text_stat/text_stat.nit:331,2--336,4