Ignore:
Timestamp:
Jul 2, 2008, 10:40:29 AM (17 years ago)
Author:
[email protected]
Message:

2008-07-02 Kevin McCullough <[email protected]>

Reviewed by Dan.

Broke CallIdentifier out into its own file. I did this because it's
going to grow a lot soon and I wanted this to be a separate patch.

  • JavaScriptCore.xcodeproj/project.pbxproj:
  • profiler/CallIdentifier.h: Added. (KJS::CallIdentifier::CallIdentifier): (KJS::CallIdentifier::operator==): (KJS::CallIdentifier::operator!=): (KJS::CallIdentifier::operator const char* ): (KJS::CallIdentifier::toString):
  • profiler/ProfileNode.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/profiler/Profile.cpp

    r34800 r34957  
    9999        currentNode = next;
    100100
    101     if (currentNode->callIdentifier().name != "profile")
     101    if (currentNode->callIdentifier().m_name != "profile")
    102102        return;
    103103
     
    118118        currentNode = next;
    119119
    120     if (currentNode->callIdentifier().name != "profileEnd")
     120    if (currentNode->callIdentifier().m_name != "profileEnd")
    121121        return;
    122122
Note: See TracChangeset for help on using the changeset viewer.