Changeset 20211 in webkit


Ignore:
Timestamp:
Mar 15, 2007 12:11:45 AM (17 years ago)
Author:
ggaren
Message:

Added an assert to help catch a bug. Hopefully someone will hit it!


  • bindings/js/kjs_proxy.cpp: (WebCore::KJSProxy::~KJSProxy):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r20209 r20211  
     12007-03-15  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Added an assert to help catch a bug. Hopefully someone will hit it!
     4       
     5        * bindings/js/kjs_proxy.cpp:
     6        (WebCore::KJSProxy::~KJSProxy):
     7
    182007-03-14  Oliver Hunt  <oliver@apple.com>
    29
  • trunk/WebCore/bindings/js/kjs_proxy.cpp

    r19978 r20211  
    4747KJSProxy::~KJSProxy()
    4848{
     49    // Check for <rdar://problem/4876466>. In theory, no JS should be executing
     50    // in our interpreter.
     51    ASSERT(!m_script->context());
    4952    m_script = 0;
    5053   
Note: See TracChangeset for help on using the changeset viewer.