Update wikipage Major changes between ISE Eiffel 15.12 and ISE Eiffel 16.05. (Signed-off-by:alexk).

git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1573 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
eiffel-org
2016-06-01 08:34:42 +00:00
parent 118b1b4500
commit 72ba183004

View File

@@ -16,7 +16,7 @@ This is achieved as follows:
The change allows dropping explicit detachable marks in local declarations and simplifying the code that uses Result, e.g.
<code>
foo: X
foo: X
local
r: detachable X
do
@@ -27,7 +27,7 @@ The change allows dropping explicit detachable marks in local declarations and s
Result := r
end
foo: X
foo: X
do
if attached something as r then
Result := r
@@ -39,7 +39,7 @@ The change allows dropping explicit detachable marks in local declarations and s
into
<code>
foo: X
foo: X
do
Result := something
if not attached Result then
@@ -76,12 +76,11 @@ The change does not allow previously void-unsafe code to be treated as void-safe
* Fix invalid type checking error when using a manifest array in an across loop when some special crafted code appears before (see eweasel test#valid288) as in:
<code>
failure
failure
local
i: INTEGER
do
bar (Void).make_from_array (Void) -- Comment out this line to fix the bug.
across
<<1, 2, 3>> as c_i
loop