Changeset 15212 in webkit for trunk/JavaScriptCore/API/JSContextRef.h
- Timestamp:
- Jul 7, 2006, 1:39:38 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSContextRef.h
r15168 r15212 50 50 @param context execution context to use 51 51 @param script a character buffer containing the JavaScript to evaluate 52 @param this Value object to use as "this," or NULL to use the global object as "this"52 @param thisObject the object to use as "this," or NULL to use the global object as "this." 53 53 @param sourceURL URL to the file containing the JavaScript, or NULL - this is only used for error reporting 54 54 @param startingLineNumber the JavaScript's starting line number in the file located at sourceURL - this is only used for error reporting … … 56 56 @result result of evaluation, or NULL if an uncaught exception was thrown 57 57 */ 58 JSValueRef JSEvaluate(JSContextRef context, JSStringBufferRef script, JS ValueRef thisValue, JSStringBufferRef sourceURL, int startingLineNumber, JSValueRef* exception);58 JSValueRef JSEvaluate(JSContextRef context, JSStringBufferRef script, JSObjectRef thisObject, JSStringBufferRef sourceURL, int startingLineNumber, JSValueRef* exception); 59 59 60 60 /*!
Note:
See TracChangeset
for help on using the changeset viewer.