From 316cb50db171e8e4417e5cd017bc1cedf7c4255a Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Sun, 27 Dec 2009 07:57:57 +1100 Subject: [PATCH] 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 --- doc/devel/roadmap.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/devel/roadmap.html b/doc/devel/roadmap.html index d2158d928e4..8a49823747f 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.