class EL_PARSER_TEXT_EDITOR

(source code)

Description

Text editor that searchs for a grammatical pattern. The pattern event handler is reponsible for sending modified text to the output. Unmatched text is automatically sent to output.

note
	description: "[
		Text editor that searchs for a grammatical pattern. The pattern event handler is reponsible for
		sending modified text to the output. Unmatched text is automatically sent to output.
	]"

	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"

	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2022-11-19 10:16:13 GMT (Saturday 19th November 2022)"
	revision: "4"

deferred class
	EL_PARSER_TEXT_EDITOR

inherit
	EL_TEXT_EDITOR
		redefine
			make_default
		end

	EL_PARSER
		rename
			new_pattern as delimiting_pattern
		redefine
			make_default
		end

feature {NONE} -- Initialization

	make_default
			--
		do
			Precursor {EL_TEXT_EDITOR}
			Precursor {EL_PARSER}
		end

feature -- Basic operations

	put_editions
		do
			find_all (agent on_unmatched_text)
		end

feature {NONE} -- Implementation

	delete (start_index, end_index: INTEGER)
			--
		do
		end

	on_unmatched_text (start_index, end_index: INTEGER)
			--
		do
			put_source_substring (start_index, end_index)
		end

	put_source_substring (start_index, end_index: INTEGER)
			--
		do
			put_string (source_substring (start_index, end_index, False))
		end

	replace (start_index, end_index: INTEGER; new_text: ZSTRING)
			--
		do
			put_string (new_text)
		end

end