Changeset 52987 in webkit


Ignore:
Timestamp:
Jan 8, 2010 4:09:42 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-08 Eric Seidel <eric@webkit.org>

No review, rolling out r52983.
http://trac.webkit.org/changeset/52983
https://bugs.webkit.org/show_bug.cgi?id=33321

Broke 59 JavaScriptCore tests. I don't think Kent knew about
run-javascriptcore-tests. Sadly neither does the commit-bot,
yet.

  • runtime/RegExp.cpp: (JSC::RegExp::RegExp):
  • runtime/RegExp.h: (JSC::RegExp::flags):
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r52984 r52987  
     12010-01-08  Eric Seidel  <eric@webkit.org>
     2
     3        No review, rolling out r52983.
     4        http://trac.webkit.org/changeset/52983
     5        https://bugs.webkit.org/show_bug.cgi?id=33321
     6
     7        Broke 59 JavaScriptCore tests.  I don't think Kent knew about
     8        run-javascriptcore-tests.  Sadly neither does the commit-bot,
     9        yet.
     10
     11        * runtime/RegExp.cpp:
     12        (JSC::RegExp::RegExp):
     13        * runtime/RegExp.h:
     14        (JSC::RegExp::flags):
     15
    1162010-01-08  Eric Seidel  <eric@webkit.org>
    217
  • trunk/JavaScriptCore/runtime/RegExp.cpp

    r52983 r52987  
    6666inline RegExp::RegExp(JSGlobalData* globalData, const UString& pattern, const UString& flags)
    6767    : m_pattern(pattern)
     68    , m_flags(flags)
    6869    , m_flagBits(0)
    6970    , m_constructionError(0)
  • trunk/JavaScriptCore/runtime/RegExp.h

    r52983 r52987  
    5050
    5151        const UString& pattern() const { return m_pattern; }
     52        const UString& flags() const { return m_flags; }
    5253
    5354        bool isValid() const { return !m_constructionError; }
     
    6667
    6768        UString m_pattern; // FIXME: Just decompile m_regExp instead of storing this.
     69        UString m_flags; // FIXME: Just decompile m_regExp instead of storing this.
    6870        int m_flagBits;
    6971        const char* m_constructionError;
Note: See TracChangeset for help on using the changeset viewer.