Ignore:
Timestamp:
Jun 25, 2010, 6:04:28 PM (15 years ago)
Author:
[email protected]
Message:

2010-06-25 Sheriff Bot <[email protected]>

Unreviewed, rolling out r61924.
http://trac.webkit.org/changeset/61924
https://bugs.webkit.org/show_bug.cgi?id=41240

It was rolled out, but cq+ wasn't removed (Requested by Ossy_
on #webkit).

  • runtime/RegExp.cpp: (JSC::RegExp::RegExp): (JSC::RegExp::create):
  • runtime/RegExp.h:
  • runtime/RegExpCache.cpp: (JSC::RegExpCache::lookupOrCreate): (JSC::RegExpCache::create):
  • runtime/RegExpCache.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/RegExp.h

    r61924 r61927  
    3838    class RegExp : public RefCounted<RegExp> {
    3939    public:
     40        static PassRefPtr<RegExp> create(JSGlobalData* globalData, const UString& pattern);
    4041        static PassRefPtr<RegExp> create(JSGlobalData* globalData, const UString& pattern, const UString& flags);
    4142#if !ENABLE(YARR)
     
    5657
    5758    private:
     59        RegExp(JSGlobalData* globalData, const UString& pattern);
    5860        RegExp(JSGlobalData* globalData, const UString& pattern, const UString& flags);
    5961
Note: See TracChangeset for help on using the changeset viewer.