class TP_RSTRING_QUOTED_EIFFEL_STRING
TP_RSTRING_QUOTED_STRING implemented for Eiffel language
note
description: "[
${TP_RSTRING_QUOTED_STRING} implemented for Eiffel language
]"
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: "2024-01-20 19:18:26 GMT (Saturday 20th January 2024)"
revision: "5"
class
TP_RSTRING_QUOTED_EIFFEL_STRING
inherit
TP_RSTRING_QUOTED_STRING
redefine
unescaped_code
end
TP_EIFFEL_FACTORY
rename
escaped_character_sequence as new_escape_sequence
end
create
make
feature {NONE} -- Implementation
unescaped_code (text: READABLE_STRING_8; start_index, end_index, sequence_count: INTEGER): NATURAL
do
if sequence_count = 2 then
Result := Code_table [text [end_index]].to_natural_32
elseif text [start_index + 1] = '/' and then text [end_index] = '/' then
Result := core.copied_substring (text, start_index + 2, end_index - 1).to_natural
end
end
end