Fixed error visitor due to recent signature changes

This commit is contained in:
Jocelyn Fiat
2012-02-15 11:33:39 +01:00
parent 9138ffedfb
commit 413fdaf6cd
3 changed files with 24 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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