Title: [88372] trunk/Source/_javascript_Core
Revision
88372
Author
[email protected]
Date
2011-06-08 12:45:37 -0700 (Wed, 08 Jun 2011)

Log Message

Reviewed by Eric Seidel.

Add export symbols to interpreter headers.
https://bugs.webkit.org/show_bug.cgi?id=27551

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (88371 => 88372)


--- trunk/Source/_javascript_Core/ChangeLog	2011-06-08 19:41:55 UTC (rev 88371)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-06-08 19:45:37 UTC (rev 88372)
@@ -2,6 +2,15 @@
 
         Reviewed by Eric Seidel.
 
+        Add export symbols to interpreter headers.
+        https://bugs.webkit.org/show_bug.cgi?id=27551
+
+        * interpreter/Interpreter.h:
+
+2011-06-08  Kevin Ollivier  <[email protected]>
+
+        Reviewed by Eric Seidel.
+
         Add export symbols to debugger headers.
         https://bugs.webkit.org/show_bug.cgi?id=27551
 

Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.h (88371 => 88372)


--- trunk/Source/_javascript_Core/interpreter/Interpreter.h	2011-06-08 19:41:55 UTC (rev 88371)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.h	2011-06-08 19:45:37 UTC (rev 88372)
@@ -100,8 +100,8 @@
         JSValue execute(EvalExecutable* evalNode, CallFrame* exec, JSObject* thisObj, ScopeChainNode* scopeChain);
 
         JSValue retrieveArguments(CallFrame*, JSFunction*) const;
-        JSValue retrieveCaller(CallFrame*, JSFunction*) const;
-        void retrieveLastCaller(CallFrame*, int& lineNumber, intptr_t& sourceID, UString& sourceURL, JSValue& function) const;
+        JS_EXPORT_PRIVATE JSValue retrieveCaller(CallFrame*, JSFunction*) const;
+        JS_EXPORT_PRIVATE void retrieveLastCaller(CallFrame*, int& lineNumber, intptr_t& sourceID, UString& sourceURL, JSValue& function) const;
         
         void getArgumentsData(CallFrame*, JSFunction*&, ptrdiff_t& firstParameterIndex, Register*& argv, int& argc);
         
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to