Garbage collection in javascript (GWT)

2013-07-10 Thread Bhumika Thaker
I want to know that how java script object is collected by GC? so I goggled but could not find any satisfied answers. The question is related to GWT code, as we know that gwt compile java code into javascript. so how it will use GC mechanism in it? Just example : There is four screen on my appl

Re: Garbage collection in javascript (GWT)

2013-07-10 Thread Jens
Take a read: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Memory_Management GWT also has two articles about memory leaks: https://code.google.com/p/google-web-toolkit/wiki/UnderstandingMemoryLeaks http://www.gwtproject.org/articles/dom_events_memory_leaks_and_you.html In short: If

Re: Garbage collection in javascript (GWT)

2013-07-10 Thread Bhumika Thaker
Thank you... On Wed, Jul 10, 2013 at 11:26 PM, Jens wrote: > Take a read: > > https://developer.mozilla.org/en-US/docs/Web/JavaScript/Memory_Management > > > GWT also has two articles about memory leaks: > > https://code.google.com/p/google-web-toolkit/wiki/UnderstandingMemoryLeaks > http://ww