Skip to content
Advertisement

ECMAScript 6 class destructor

I know ECMAScript 6 has constructors but is there such a thing as destructors for ECMAScript 6?

For example if I register some of my object’s methods as event listeners in the constructor, I want to remove them when my object is deleted.

One solution is to have a convention of creating a destructor method for every class that needs this kind of behaviour and manually call it. This will remove the references to the event handlers, hence my object will truly be ready for garbage collection. Otherwise it’ll stay in memory because of those methods.

But I was hoping if ECMAScript 6 has something native that will be called right before the object is garbage collected.

If there is no such mechanism, what is a pattern/convention for such problems?

Advertisement

Answer

Is there such a thing as destructors for ECMAScript 6?

No. EcmaScript 6 does not specify any garbage collection semantics at all[1], so there is nothing like a “destruction” either.

If I register some of my object’s methods as event listeners in the constructor, I want to remove them when my object is deleted

A destructor wouldn’t even help you here. It’s the event listeners themselves that still reference your object, so it would not be able to get garbage-collected before they are unregistered.
What you are actually looking for is a method of registering listeners without marking them as live root objects. (Ask your local eventsource manufacturer for such a feature).

1): Well, there is a beginning with the specification of WeakMap and WeakSet objects. However, true weak references are still in the pipeline [1][2].

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement