Ignore:
Timestamp:
Jun 16, 2019, 6:48:13 PM (6 years ago)
Author:
Darin Adler
Message:

Rename AtomicString to AtomString
https://bugs.webkit.org/show_bug.cgi?id=195276

Reviewed by Michael Catanzaro.

  • many files: Let do-webcore-rename do the renaming.

Source/WTF:

  • wtf/text/AtomString.h: After renaming, added AtomicString as a synonym for

now; helps smooth things over with a tiny bit of Apple internal software so
we don't have to do this all at once. Can remove it soon.

Tools:

  • Scripts/do-webcore-rename: Updated with a list of all the identifiers

that mention "atomic string" and changed them to instead say "atom string".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGLazyJSValue.cpp

    r232089 r246490  
    5454        return jsString(&vm, u.stringImpl);
    5555    case NewStringImpl:
    56         return jsString(&vm, AtomicStringImpl::add(u.stringImpl));
     56        return jsString(&vm, AtomStringImpl::add(u.stringImpl));
    5757    }
    5858    RELEASE_ASSERT_NOT_REACHED();
Note: See TracChangeset for help on using the changeset viewer.