Changeset 106189 in webkit


Ignore:
Timestamp:
Jan 28, 2012 7:23:19 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r106187.
http://trac.webkit.org/changeset/106187
https://bugs.webkit.org/show_bug.cgi?id=77276

The last rollout was a false charge. (Requested by morrita on
#webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-01-28

  • runtime/ExceptionHelpers.h:

(InterruptedExecutionError):

  • runtime/JSBoundFunction.h:

(JSBoundFunction):

  • runtime/RegExp.h:

(RegExp):

  • runtime/RegExpMatchesArray.h:

(RegExpMatchesArray):

Location:
trunk/Source/JavaScriptCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r106187 r106189  
     12012-01-28  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r106187.
     4        http://trac.webkit.org/changeset/106187
     5        https://bugs.webkit.org/show_bug.cgi?id=77276
     6
     7        The last rollout was a false charge. (Requested by morrita on
     8        #webkit).
     9
     10        * runtime/ExceptionHelpers.h:
     11        (InterruptedExecutionError):
     12        * runtime/JSBoundFunction.h:
     13        (JSBoundFunction):
     14        * runtime/RegExp.h:
     15        (RegExp):
     16        * runtime/RegExpMatchesArray.h:
     17        (RegExpMatchesArray):
     18
    1192012-01-28  Sheriff Bot  <webkit.review.bot@gmail.com>
    220
  • trunk/Source/JavaScriptCore/runtime/ExceptionHelpers.h

    r106187 r106189  
    8080    }
    8181
    82     static JS_EXPORTDATA const ClassInfo s_info;
     82    static const ClassInfo s_info;
    8383};
    8484
  • trunk/Source/JavaScriptCore/runtime/JSBoundFunction.h

    r106187 r106189  
    5252    }
    5353
    54     static JS_EXPORTDATA const ClassInfo s_info;
     54    static const ClassInfo s_info;
    5555
    5656protected:
  • trunk/Source/JavaScriptCore/runtime/RegExp.h

    r106187 r106189  
    7373        }
    7474       
    75         static JS_EXPORTDATA const ClassInfo s_info;
     75        static const ClassInfo s_info;
    7676
    7777        RegExpKey key() { return RegExpKey(m_flags, m_patternString); }
  • trunk/Source/JavaScriptCore/runtime/RegExpMatchesArray.h

    r106187 r106189  
    4040        static void destroy(JSCell*);
    4141
    42         static JS_EXPORTDATA const ClassInfo s_info;
     42        static const ClassInfo s_info;
    4343
    4444        static Structure* createStructure(JSGlobalData& globalData, JSGlobalObject* globalObject, JSValue prototype)
Note: See TracChangeset for help on using the changeset viewer.