Ignore:
Timestamp:
Jul 14, 2005, 3:32:17 PM (20 years ago)
Author:
ggaren
Message:
  • test failure: ecma_3/Function/regress-104584.js

Reviewed by mjs.

  • kjs/interpreter.cpp: (Interpreter::finalCheck): removed misleading while && comment
  • kjs/testkjs.cpp: added "gc" function to global object (TestFunctionImp::): (TestFunctionImp::call): (main):
  • tests/mozilla/expected.html:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/interpreter.cpp

    r9768 r9781  
    311311{
    312312  fprintf(stderr,"Interpreter::finalCheck()\n");
    313   // Garbage collect - as many times as necessary
    314   // (we could delete an object which was holding another object, so
    315   // the deref() will happen too late for deleting the impl of the 2nd object).
    316   while( Collector::collect() )
    317     ;
     313  Collector::collect();
    318314
    319315  Node::finalCheck();
Note: See TracChangeset for help on using the changeset viewer.