Unreviewed, rolling out r106187.
authorcommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Sat, 28 Jan 2012 15:23:19 +0000 (15:23 +0000)
committercommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Sat, 28 Jan 2012 15:23:19 +0000 (15:23 +0000)
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):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106189 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/JavaScriptCore/ChangeLog
Source/JavaScriptCore/runtime/ExceptionHelpers.h
Source/JavaScriptCore/runtime/JSBoundFunction.h
Source/JavaScriptCore/runtime/RegExp.h
Source/JavaScriptCore/runtime/RegExpMatchesArray.h

index 3546486..b228ecf 100644 (file)
@@ -1,5 +1,23 @@
 2012-01-28  Sheriff Bot  <webkit.review.bot@gmail.com>
 
+        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).
+
+        * runtime/ExceptionHelpers.h:
+        (InterruptedExecutionError):
+        * runtime/JSBoundFunction.h:
+        (JSBoundFunction):
+        * runtime/RegExp.h:
+        (RegExp):
+        * runtime/RegExpMatchesArray.h:
+        (RegExpMatchesArray):
+
+2012-01-28  Sheriff Bot  <webkit.review.bot@gmail.com>
+
         Unreviewed, rolling out r106151.
         http://trac.webkit.org/changeset/106151
         https://bugs.webkit.org/show_bug.cgi?id=77275
index 388235b..7bffd29 100644 (file)
@@ -79,7 +79,7 @@ public:
         return Structure::create(globalData, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), &s_info);
     }
 
-    static JS_EXPORTDATA const ClassInfo s_info;
+    static const ClassInfo s_info;
 };
 
 class TerminatedExecutionError : public JSNonFinalObject {
index c60d7db..e54d458 100644 (file)
@@ -51,7 +51,7 @@ public:
         return Structure::create(globalData, globalObject, prototype, TypeInfo(JSFunctionType, StructureFlags), &s_info); 
     }
 
-    static JS_EXPORTDATA const ClassInfo s_info;
+    static const ClassInfo s_info;
 
 protected:
     const static unsigned StructureFlags = OverridesHasInstance | OverridesVisitChildren | Base::StructureFlags;
index 311bb75..d0201cb 100644 (file)
@@ -72,7 +72,7 @@ namespace JSC {
             return Structure::create(globalData, globalObject, prototype, TypeInfo(LeafType, 0), &s_info);
         }
         
-        static JS_EXPORTDATA const ClassInfo s_info;
+        static const ClassInfo s_info;
 
         RegExpKey key() { return RegExpKey(m_flags, m_patternString); }
 
index acd2317..c34920d 100644 (file)
@@ -39,7 +39,7 @@ namespace JSC {
         }
         static void destroy(JSCell*);
 
-        static JS_EXPORTDATA const ClassInfo s_info;
+        static const ClassInfo s_info;
 
         static Structure* createStructure(JSGlobalData& globalData, JSGlobalObject* globalObject, JSValue prototype)
         {