Title: [87304] trunk/Source/_javascript_Core
Revision
87304
Author
[email protected]
Date
2011-05-25 10:10:03 -0700 (Wed, 25 May 2011)

Log Message

Reviewed by Eric Seidel.

Add JS_EXPORT_PRIVATE macro for exported methods in bytecompiler headers.
        
https://bugs.webkit.org/show_bug.cgi?id=27551

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (87303 => 87304)


--- trunk/Source/_javascript_Core/ChangeLog	2011-05-25 17:06:32 UTC (rev 87303)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-05-25 17:10:03 UTC (rev 87304)
@@ -1,3 +1,13 @@
+2011-04-10  Kevin Ollivier  <[email protected]>
+
+        Reviewed by Eric Seidel.
+
+        Add JS_EXPORT_PRIVATE macro for exported methods in bytecompiler headers.
+        
+        https://bugs.webkit.org/show_bug.cgi?id=27551
+
+        * bytecompiler/BytecodeGenerator.h:
+
 2011-05-24  Keishi Hattori  <[email protected]>
 
         Reviewed by Kent Tamura.

Modified: trunk/Source/_javascript_Core/bytecompiler/BytecodeGenerator.h (87303 => 87304)


--- trunk/Source/_javascript_Core/bytecompiler/BytecodeGenerator.h	2011-05-25 17:06:32 UTC (rev 87303)
+++ trunk/Source/_javascript_Core/bytecompiler/BytecodeGenerator.h	2011-05-25 17:10:03 UTC (rev 87304)
@@ -89,7 +89,7 @@
         typedef DeclarationStacks::VarStack VarStack;
         typedef DeclarationStacks::FunctionStack FunctionStack;
 
-        static void setDumpsGeneratedCode(bool dumpsGeneratedCode);
+        JS_EXPORT_PRIVATE static void setDumpsGeneratedCode(bool dumpsGeneratedCode);
         static bool dumpsGeneratedCode();
 
         BytecodeGenerator(ProgramNode*, ScopeChainNode*, SymbolTable*, ProgramCodeBlock*);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to