deferred class EIFFEL_NON_TERMINAL_NODE
Summary
Direct parents
Inherit list: EIFFEL_NODE
Known children
Inherit list: EIFFEL_NON_TERMINAL_NODE_IMPL
Overview
Features
{ANY}
{EIFFEL_GRAMMAR}
{ANY}
{EIFFEL_GRAMMAR}
Basic operations
{EIFFEL_NODE_HANDLER}
{EIFFEL_NODE_HANDLER}
{EIFFEL_NON_TERMINAL_NODE, EIFFEL_LIST_NODE}
{}
{ANY}
name_at (index: INTEGER_32): FIXED_STRING
deferred function
{ANY}
require
node_at (index: INTEGER_32): EIFFEL_NODE
deferred function
{ANY}
require
valid_index (index: INTEGER_32): BOOLEAN
deferred function
{ANY}
ensure
  • definition: Result = index >= lower and then index <= upper
lower: INTEGER_32
deferred function
{ANY}
ensure
  • Result >= 0
upper: INTEGER_32
deferred function
{ANY}
ensure
count: INTEGER_32
deferred function
{ANY}
ensure
is_empty: BOOLEAN
deferred function
{ANY}
ensure
  • definition: Result = count = 0
source_line: INTEGER_32
effective function
{ANY}
source_column: INTEGER_32
effective function
{ANY}
source_index: INTEGER_32
effective function
{ANY}
set (index: INTEGER_32, node: EIFFEL_NODE)
deferred procedure
require ensure
parent: EIFFEL_NODE
writable attribute
{ANY}
the parent node
forgotten: FAST_ARRAY[EIFFEL_NODE]
writable attribute
{ANY}
used when this node is in a EIFFEL_LIST_NODE and nodes are between this node and the next one
deferred function
{ANY}
the name of the node in the grammar
ensure
set_forgotten (a_forgotten: FAST_ARRAY[EIFFEL_NODE])
effective procedure
ensure
display (output: OUTPUT_STREAM, indent: INTEGER_32, p: STRING)
deferred procedure
Display the node in a tree fashion in the provided output stream
generate (o: OUTPUT_STREAM)
deferred procedure
Generate the node exactly as it was written, including blanks and forgotten nodes, onto the provided output stream
generate_forgotten (o: OUTPUT_STREAM)
effective procedure
set_parent (a_parent: EIFFEL_NODE)
effective procedure
require
  • a_parent /= Void
  • parent = Void
ensure
do_indent (output: OUTPUT_STREAM, indent: INTEGER_32, p: STRING)
effective procedure
{}
accept (visitor: VISITOR)
deferred procedure
{ANY}
Accept to be visited by the visitor.
require
  • visitor /= Void