bug 660441 - removal of cx parameter from IsAboutToBeFinalized. r=anygregor

This commit is contained in:
Igor Bukanov
2012-02-08 01:51:32 +01:00
parent b98cfeb8d6
commit 642ae18cf6
22 changed files with 90 additions and 114 deletions

View File

@@ -81,7 +81,7 @@ WeakMapBase::sweepAll(JSTracer *tracer)
void
WeakMapBase::traceAllMappings(WeakMapTracer *tracer)
{
JSRuntime *rt = tracer->context->runtime;
JSRuntime *rt = tracer->runtime;
for (WeakMapBase *m = rt->gcWeakMapList; m; m = m->next)
m->traceMappings(tracer);
}