<td>important to be able to write more generic containers easily</td>
</tr>
<tr>
<td>support overloading of the assignment operator</td>
<td>0.9.6</td>
<td>like <ttclass="docutils literal"><spanclass="pre">fields</span></tt> and destructors an assignment operator needs to be lifted</td>
</tr>
<tr>
<td>destructors need to interact with finalizers</td>
<td>0.9.6</td>
<td>destructors and finalizers are implemented, but do not interact. <ttclass="docutils literal"><spanclass="pre">new</span></tt> which takes a finalizer needs to be deprecated. People should use a destructor instead</td>
</tr>
<tr>
<td>the new concurrency model</td>
<td>0.9.6</td>
<td>this requires frontend and backend changes, but no changes to the runtime/GC</td>
</tr>
<tr>
<td>weaken the requirements for forward declarations</td>
<td>after 1.0</td>
<td>two different design ideas exist: one conservative and so will work, the other highly experimental</td>
</tr>
<tr>
<td>comment handling is weird</td>
<td>0.9.6</td>
<td>comments should be optional and not part of the grammar, unless it is a documentation comment</td>
</tr>
<tr>
<td>push pragma needs to be reworked</td>
<td>after 1.0</td>
<td>it should be distinguished between 'push' for 'type', 'proc' etc.</td>
</tr>
<tr>
<td>pragmas are not supported for 'bindSym'</td>
<td>0.9.6</td>
<td>this makes clean macros impossible to write when it comes to pragmas</td>
</tr>
<tr>
<td>type checking for tuples</td>
<td>0.9.8</td>
<td>needs to be refined. Recursive tuples should be forbidden.</td>
</tr>
<tr>
<td>extended macros API</td>
<td>0.9.8</td>
<td>missing: an API for working with types; the builtin getImpl</td>
</tr>
<tr>
<td>write tracking</td>
<td>0.9.8</td>
<td>algorithm exists. Can be extended to compute lent pointers.</td>
<td>prevent object branch transitions from low(selector)</td>
<td>after 1.0</td>
<td>object branch transitions from low(selector) are allowed, because they are simply too useful, but can break memory safety. Now that the language has a proper notion of construction, we can make them safe.</td>
</tr>
<tr>
<td><ttclass="docutils literal"><spanclass="pre">~</span></tt> operator for effects</td>
<td>after 1.0</td>
<td>it is not entirely clear what <ttclass="docutils literal"><spanclass="pre">~F</span></tt> should mean.</td>
</tr>
<tr>
<td>some effects like <ttclass="docutils literal"><spanclass="pre">GCMem</span></tt> don't need to be white-listed</td>
<td>after 1.0</td>
<td>unclear whether this only affects built-in properties like <ttclass="docutils literal"><spanclass="pre">GCMem</span></tt>, <ttclass="docutils literal"><spanclass="pre">Recursive</span></tt>.</td>
</tr>
<tr>
<td>returning 'var T' is unsafe and needs static analysis to make safe</td>
<td>after 1.0</td>
<td>the compiler already checks for trivial examples</td>
</tr>
<tr>
<td>alias analysis needs to specified and controllable with pragmas</td>