Fixed error visitor due to recent signature changes
This commit is contained in:
@@ -31,7 +31,7 @@ feature -- Access
|
|||||||
|
|
||||||
feature -- Output
|
feature -- Output
|
||||||
|
|
||||||
output_string (a_str: detachable STRING_GENERAL)
|
output_string (a_str: detachable READABLE_STRING_GENERAL)
|
||||||
-- Output Unicode string
|
-- Output Unicode string
|
||||||
do
|
do
|
||||||
if a_str /= Void then
|
if a_str /= Void then
|
||||||
@@ -50,4 +50,14 @@ feature -- Output
|
|||||||
file.put_new_line
|
file.put_new_line
|
||||||
end
|
end
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2012, Eiffel Software and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
|
source: "[
|
||||||
|
Eiffel Software
|
||||||
|
5949 Hollister Ave., Goleta, CA 93117 USA
|
||||||
|
Telephone 805-685-1006, Fax 805-685-6869
|
||||||
|
Website http://www.eiffel.com
|
||||||
|
Customer support http://support.eiffel.com
|
||||||
|
]"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ inherit
|
|||||||
|
|
||||||
feature -- Output
|
feature -- Output
|
||||||
|
|
||||||
output_string (a_str: detachable STRING_GENERAL)
|
output_string (a_str: detachable READABLE_STRING_GENERAL)
|
||||||
-- Output Unicode string
|
-- Output Unicode string
|
||||||
deferred
|
deferred
|
||||||
end
|
end
|
||||||
@@ -21,7 +21,7 @@ feature -- Output
|
|||||||
output_any (obj: detachable ANY)
|
output_any (obj: detachable ANY)
|
||||||
-- Output Unicode string
|
-- Output Unicode string
|
||||||
do
|
do
|
||||||
if attached {STRING_GENERAL} obj as l_str then
|
if attached {READABLE_STRING_GENERAL} obj as l_str then
|
||||||
to_implement ("Convert into UTF-8 or console encoding before output")
|
to_implement ("Convert into UTF-8 or console encoding before output")
|
||||||
output_string (l_str)
|
output_string (l_str)
|
||||||
elseif obj /= Void then
|
elseif obj /= Void then
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ feature -- Access
|
|||||||
|
|
||||||
feature -- Output
|
feature -- Output
|
||||||
|
|
||||||
output_string (a_str: detachable STRING_GENERAL)
|
output_string (a_str: detachable READABLE_STRING_GENERAL)
|
||||||
-- Output Unicode string
|
-- Output Unicode string
|
||||||
do
|
do
|
||||||
if a_str /= Void then
|
if a_str /= Void then
|
||||||
@@ -50,4 +50,14 @@ feature -- Output
|
|||||||
buffer.append_character ('%N')
|
buffer.append_character ('%N')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2012, Eiffel Software and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
|
source: "[
|
||||||
|
Eiffel Software
|
||||||
|
5949 Hollister Ave., Goleta, CA 93117 USA
|
||||||
|
Telephone 805-685-1006, Fax 805-685-6869
|
||||||
|
Website http://www.eiffel.com
|
||||||
|
Customer support http://support.eiffel.com
|
||||||
|
]"
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user