diff --git a/documentation/trunk/eiffelstudio/eiffelstudio-reference/compiler/compiler-history/Major-changes-between-ISE-Eiffel-15.01-and-ISE-Eiffel-15.08.wiki b/documentation/trunk/eiffelstudio/eiffelstudio-reference/compiler/compiler-history/Major-changes-between-ISE-Eiffel-15.01-and-ISE-Eiffel-15.08.wiki index 64413628..28c0dc2b 100644 --- a/documentation/trunk/eiffelstudio/eiffelstudio-reference/compiler/compiler-history/Major-changes-between-ISE-Eiffel-15.01-and-ISE-Eiffel-15.08.wiki +++ b/documentation/trunk/eiffelstudio/eiffelstudio-reference/compiler/compiler-history/Major-changes-between-ISE-Eiffel-15.01-and-ISE-Eiffel-15.08.wiki @@ -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: + separate some_expression_of_separate_type as x, other_expression_of_separate_type as y @@ -11,9 +12,12 @@ x.foo y.bar end + * Supported creation of passive regions in SCOOP that execute all logged calls on caller's processors: + create foo.make -- Creation instruction. bar := create {separate BAZ}.make -- Creation expression. + A side effect is that all calls on passive regions are synchronous. ==Improvements==