class EL_PYXIS_PARSER_CONSTANTS
Pyxis parser Constants
note
description: "Pyxis parser Constants"
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: "2023-08-11 14:56:24 GMT (Friday 11th August 2023)"
revision: "7"
deferred class
EL_PYXIS_PARSER_CONSTANTS
inherit
EL_MODULE_TUPLE
feature {NONE} -- Parser states
State_parse_line: NATURAL_8 = 1
State_gather_verbatim_lines: NATURAL_8 = 2
State_output_content_lines: NATURAL_8 = 3
State_gather_comments: NATURAL_8 = 4
feature {NONE} -- Constants
Document_end: STRING = "doc-end:"
Pyxis_doc: TUPLE [encoding, name, version: STRING]
once
create Result
Tuple.fill (Result, "encoding, pyxis-doc, version")
end
end