// in a garbage collected VM, destroy someObject:
someObject.a = null;
someObject.b = null;
someObject = null;
I have heard that in a good VM like Java's or C#'s, you shouldn't do this. Setting someObject's a and b to null will slow down garbage collection because the GC takes longer to find out that the objects a and b previously referred to are no longer referenced, while if you leave them intact the GC will immediately check upon them when cleaning up someObject.
Assuming what I heard is true (correct me if not), is it the same for AVM2, the ActionScript 3 VM (specifically in the latest versions of Flash Player)?
The reason I ask is I have a colleague who does it like that, because he has learned at a previous employer that it's faster, and that Flash has many quircks like that (which I find easy to believe).
I'm just wondering if that information is still up to date (for other Flash optimizations like that as well). In my experience optimization tricks like that get outdated rather quickly in a living platform.