From: Rob Pike Date: Sat, 26 Dec 2009 20:57:57 +0000 (+1100) Subject: add exceptions to the road map. i think this just was an oversight. X-Git-Tag: weekly.2010-01-05~36 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=316cb50db171e8e4417e5cd017bc1cedf7c4255a;p=gostls13.git add exceptions to the road map. i think this just was an oversight. also a way to run code when object is deleted. both of these are possibilities, not certainties. R=rsc, iant CC=golang-dev https://golang.org/cl/181057 --- diff --git a/doc/devel/roadmap.html b/doc/devel/roadmap.html index d2158d928e..8a49823747 100644 --- a/doc/devel/roadmap.html +++ b/doc/devel/roadmap.html @@ -32,7 +32,12 @@ Possibly rewrite restriction on goto across variable declarations. Variant types. A way to define a type as being the union of some set of types.
  • +Possibly provide a method that will be run by the garbage +collector when an item is freed. +
  • Generics. An active topic of discussion. +
  • +Exceptions. An active topic of discussion.