Ignore:
Timestamp:
Jul 14, 2006, 10:41:10 AM (19 years ago)
Author:
ggaren
Message:

Reviewed by Beth.


Moved JSCheckScriptSyntax, JSEvaluateScript, and JSGarbageCollect into
JSBase.h/.cpp. They don't belong in the value-specific or context-specific
files because they're not part of the value or context implementations.

  • API/JSBase.h:
  • API/JSContextRef.cpp: (JSContextGetGlobalObject):
  • API/JSContextRef.h:
  • API/JSValueRef.cpp: (JSValueUnprotect):
  • API/JSValueRef.h:
  • JavaScriptCore.xcodeproj/project.pbxproj:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/API/JSValueRef.h

    r15404 r15428  
    259259void JSValueUnprotect(JSValueRef value);
    260260
    261 /*!
    262 @function
    263 @abstract Performs a JavaScript garbage collection.
    264 @discussion JavaScript values that are on the machine stack, in a register,
    265  protected by JSValueProtect, set as the global object of an execution context,
    266  or reachable from any such value will not be collected.
    267  
    268  You are not required to call this function; the JavaScript engine will garbage
    269  collect as needed.
    270 */
    271 void JSGarbageCollect(void);
    272 
    273261#ifdef __cplusplus
    274262}
Note: See TracChangeset for help on using the changeset viewer.