Ignore:
Timestamp:
Jun 25, 2010, 3:16:55 AM (15 years ago)
Author:
[email protected]
Message:

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

Unreviewed, rolling out r61833.
http://trac.webkit.org/changeset/61833
https://bugs.webkit.org/show_bug.cgi?id=41205

It broke Leopard and GTK (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

    r61833 r61845  
    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.