Title: [106151] trunk/Source/_javascript_Core
Revision
106151
Author
morr...@google.com
Date
2012-01-27 14:40:53 -0800 (Fri, 27 Jan 2012)

Log Message

[JSC] Some JS_EXPORTDATA may not be necessary.
https://bugs.webkit.org/show_bug.cgi?id=77145

Reviewed by Darin Adler.

Removed JS_EXPORTDATA attributes whose attributing symbols are
not exported on Mac port.

* runtime/ExceptionHelpers.h:
(InterruptedExecutionError):
* runtime/JSBoundFunction.h:
(JSBoundFunction):
* runtime/RegExp.h:
(RegExp):
* runtime/RegExpMatchesArray.h:
(RegExpMatchesArray):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (106150 => 106151)


--- trunk/Source/_javascript_Core/ChangeLog	2012-01-27 22:26:13 UTC (rev 106150)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-01-27 22:40:53 UTC (rev 106151)
@@ -1,5 +1,24 @@
 2012-01-27  MORITA Hajime  <morr...@google.com>
 
+        [JSC] Some JS_EXPORTDATA may not be necessary.
+        https://bugs.webkit.org/show_bug.cgi?id=77145
+
+        Reviewed by Darin Adler.
+
+        Removed JS_EXPORTDATA attributes whose attributing symbols are
+        not exported on Mac port.
+        
+        * runtime/ExceptionHelpers.h:
+        (InterruptedExecutionError):
+        * runtime/JSBoundFunction.h:
+        (JSBoundFunction):
+        * runtime/RegExp.h:
+        (RegExp):
+        * runtime/RegExpMatchesArray.h:
+        (RegExpMatchesArray):
+
+2012-01-27  MORITA Hajime  <morr...@google.com>
+
         [WTF] WTFString.h has some extra JS_EXPORT_PRIVATEs
         https://bugs.webkit.org/show_bug.cgi?id=77113
 

Modified: trunk/Source/_javascript_Core/runtime/ExceptionHelpers.h (106150 => 106151)


--- trunk/Source/_javascript_Core/runtime/ExceptionHelpers.h	2012-01-27 22:26:13 UTC (rev 106150)
+++ trunk/Source/_javascript_Core/runtime/ExceptionHelpers.h	2012-01-27 22:40:53 UTC (rev 106151)
@@ -79,7 +79,7 @@
         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 {

Modified: trunk/Source/_javascript_Core/runtime/JSBoundFunction.h (106150 => 106151)


--- trunk/Source/_javascript_Core/runtime/JSBoundFunction.h	2012-01-27 22:26:13 UTC (rev 106150)
+++ trunk/Source/_javascript_Core/runtime/JSBoundFunction.h	2012-01-27 22:40:53 UTC (rev 106151)
@@ -51,7 +51,7 @@
         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;

Modified: trunk/Source/_javascript_Core/runtime/RegExp.h (106150 => 106151)


--- trunk/Source/_javascript_Core/runtime/RegExp.h	2012-01-27 22:26:13 UTC (rev 106150)
+++ trunk/Source/_javascript_Core/runtime/RegExp.h	2012-01-27 22:40:53 UTC (rev 106151)
@@ -72,7 +72,7 @@
             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); }
 

Modified: trunk/Source/_javascript_Core/runtime/RegExpMatchesArray.h (106150 => 106151)


--- trunk/Source/_javascript_Core/runtime/RegExpMatchesArray.h	2012-01-27 22:26:13 UTC (rev 106150)
+++ trunk/Source/_javascript_Core/runtime/RegExpMatchesArray.h	2012-01-27 22:40:53 UTC (rev 106151)
@@ -39,7 +39,7 @@
         }
         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)
         {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to