indexing
description: "[
Eiffel runtime panic
]"
library: "Free implementation of ELKS library"
copyright: "Copyright (c) 1986-2006, Eiffel Software and others"
license: "Eiffel Forum License v2 (see forum.txt)"
date: "$Date: 2007-12-17 17:27:30 -0800 (Mon, 17 Dec 2007) $"
revision: "$Revision: 71552 $"
class interface
EIFFEL_RUNTIME_PANIC
create
default_create
ANY
feature
frozen code: INTEGER_32
exception_manager: EXCEPTION_MANAGER
EXCEPTION_MANAGER_FACTORY
ensure EXCEPTION_MANAGER_FACTORY
exception_manager_not_void: Result /= Void
exception_trace: ?STRING_8
EXCEPTION
generating_type: STRING_8
ANY
ensure ANY
generating_type_not_void: Result /= Void
generating_type_not_empty: not Result.is_empty
generator: STRING_8
ANY
ensure ANY
generator_not_void: Result /= Void
generator_not_empty: not Result.is_empty
frozen line_number: INTEGER_32
EXCEPTION
meaning: STRING_8
EXCEPTION
message: ?STRING_8
EXCEPTION
frozen original: EXCEPTION
EXCEPTION
ensure EXCEPTION
original_not_void: Result /= Void
frozen recipient_name: ?STRING_8
EXCEPTION
frozen throwing_exception: ?EXCEPTION
EXCEPTION
frozen type_name: ?STRING_8
EXCEPTION
feature
frozen deep_equal (some: ?ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
shallow_implies_deep: standard_equal (some, other) implies Result
both_or_none_void: (some = Void) implies (Result = (other = Void))
same_type: (Result and (some /= Void)) implies (other /= Void and then some.same_type (other))
symmetric: Result implies deep_equal (other, some)
frozen equal (some: ?ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.is_equal (other))
frozen is_deep_equal (other: EIFFEL_RUNTIME_PANIC): BOOLEAN
`Current'`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
shallow_implies_deep: standard_is_equal (other) implies Result
same_type: Result implies same_type (other)
symmetric: Result implies other.is_deep_equal (Current)
is_equal (other: EIFFEL_RUNTIME_PANIC): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
symmetric: Result implies other.is_equal (Current)
consistent: standard_is_equal (other) implies Result
frozen standard_equal (some: ?ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.standard_is_equal (other))
frozen standard_is_equal (other: EIFFEL_RUNTIME_PANIC): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
same_type: Result implies same_type (other)
symmetric: Result implies other.standard_is_equal (Current)
feature
conforms_to (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
frozen is_caught: BOOLEAN
EXCEPTION
ensure EXCEPTION
not_is_caught_implies_is_ignorable: not Result implies is_ignorable
not_is_ignored: Result = not is_ignored
frozen is_ignorable: BOOLEAN
EXCEPTION
frozen is_ignored: BOOLEAN
EXCEPTION
ensure EXCEPTION
is_ignored_implies_is_ignorable: Result implies is_ignorable
not_is_caught: Result = not is_caught
frozen is_raisable: BOOLEAN
raise
EXCEPTION
same_type (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
definition: Result = (conforms_to (other) and other.conforms_to (Current))
feature
copy (other: EIFFEL_RUNTIME_PANIC)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_equal: is_equal (other)
frozen deep_copy (other: EIFFEL_RUNTIME_PANIC)
copy`other'deep_twin
ANY
require ANY
other_not_void: other /= Void
ensure ANY
deep_equal: deep_equal (Current, other)
frozen deep_twin: EIFFEL_RUNTIME_PANIC
ANY
ensure ANY
deep_twin_not_void: Result /= Void
deep_equal: deep_equal (Current, Result)
frozen standard_copy (other: EIFFEL_RUNTIME_PANIC)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_standard_equal: standard_is_equal (other)
frozen standard_twin: EIFFEL_RUNTIME_PANIC
`other'
ANY
ensure ANY
standard_twin_not_void: Result /= Void
equal: standard_equal (Result, Current)
frozen twin: EIFFEL_RUNTIME_PANIC
`Current'
twincopycopy
ANY
ensure ANY
twin_not_void: Result /= Void
is_equal: Result.is_equal (Current)
feature
frozen default: ?EIFFEL_RUNTIME_PANIC
ANY
frozen default_pointer: POINTER
`POINTER'
`p'default
`p'`POINTER'
ANY
default_rescue
ANY
frozen do_nothing
ANY
feature
io: STD_FILES
ANY
ensure ANY
io_not_void: Result /= Void
out: STRING_8
EXCEPTION
ensure ANY
out_not_void: Result /= Void
print (some: ?ANY)
`some'
ANY
frozen tagged_out: STRING_8
ANY
ensure ANY
tagged_out_not_void: Result /= Void
feature
operating_environment: OPERATING_ENVIRONMENT
ANY
ensure ANY
operating_environment_not_void: Result /= Void
feature
raise
EXCEPTION
require EXCEPTION
is_raisable: is_raisable
feature
set_message (a_message: like message)
message`a_message'
EXCEPTION
ensure EXCEPTION
message_set: equal (message, a_message)
invariant
ANY
reflexive_equality: standard_is_equal (Current)
reflexive_conformance: conforms_to (Current)
end EIFFEL_RUNTIME_PANIC