Property definitions

core $ Regex :: gather_eflags
	private fun gather_eflags: Int
	do
		var eflags = 0
		if not_bol then eflags |= flag_notbol
		if not_eol then eflags |= flag_noteol
		return eflags
	end
lib/core/re.nit:265,2--271,4