Update wikipage Major changes between ISE Eiffel 15.01 and ISE Eiffel 15.08. (Signed-off-by:tqa7ve2mnbntqnfca3i6rk7arhc2kxr8).

git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1490 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
eiffel-org
2016-01-28 12:20:55 +00:00
parent 4284d7efe9
commit 71d60176ad

View File

@@ -4,6 +4,7 @@
[[Property:link_title|15.08]]
==What's new==
* Supported a new inline separate instruction that allows making feature calls on uncontrolled separate targets inline rather than calling dedicated routines:
<code>
separate
some_expression_of_separate_type as x,
other_expression_of_separate_type as y
@@ -11,9 +12,12 @@
x.foo
y.bar
end
</code>
* Supported creation of passive regions in SCOOP that execute all logged calls on caller's processors:
<code>
create <NONE> foo.make -- Creation instruction.
bar := create <NONE> {separate BAZ}.make -- Creation expression.
</code>
A side effect is that all calls on passive regions are synchronous.
==Improvements==