Ignore:
Timestamp:
Jul 6, 2008, 7:49:29 PM (17 years ago)
Author:
[email protected]
Message:

JavaScriptCore:

2008-07-06 Sam Weinig <[email protected]>

Reviewed by Cameron Zwarich.

Second step in broad cleanup effort.

[ File list elided ]

WebCore:

2008-07-06 Sam Weinig <[email protected]>

Reviewed by Cameron Zwarich.

Add #include for kjs/protect.h.

  • xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::loadRequestAsynchronously):
File:
1 edited

Legend:

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

    r35016 r35027  
    7777    // We don't call through to JSObject because there's no way to give an
    7878    // activation object getter properties or a prototype.
    79     ASSERT(!_prop.hasGetterSetterProperties());
     79    ASSERT(!m_propertyMap.hasGetterSetterProperties());
    8080    ASSERT(prototype() == jsNull());
    8181    return false;
     
    9090    // properties are non-standard extensions that other implementations do not
    9191    // expose in the activation object.
    92     ASSERT(!_prop.hasGetterSetterProperties());
    93     _prop.put(propertyName, value, 0, true);
     92    ASSERT(!m_propertyMap.hasGetterSetterProperties());
     93    m_propertyMap.put(propertyName, value, 0, true);
    9494}
    9595
     
    103103    // properties are non-standard extensions that other implementations do not
    104104    // expose in the activation object.
    105     ASSERT(!_prop.hasGetterSetterProperties());
    106     _prop.put(propertyName, value, attributes, true);
     105    ASSERT(!m_propertyMap.hasGetterSetterProperties());
     106    m_propertyMap.put(propertyName, value, attributes, true);
    107107}
    108108
Note: See TracChangeset for help on using the changeset viewer.