Changeset 15317 in webkit for trunk/JavaScriptCore/API/JSContextRef.h
- Timestamp:
- Jul 10, 2006, 5:26:25 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSContextRef.h
r15307 r15317 61 61 JSObjectRef JSContextGetGlobalObject(JSContextRef context); 62 62 63 /*!64 @function65 @abstract Returns the current exception in a JavaScript execution context.66 @param context The JSContext whose exception you want to retrieve.67 @result A JSValue representing context's exception, or NULL if no exception has been set.68 */69 JSValueRef JSContextGetException(JSContextRef context);70 /*!71 @function72 @abstract Sets an exception in a JavaScript execution context.73 @param context The JSContext whose exception you want to set.74 @param value The exception you want to set.75 */76 void JSContextSetException(JSContextRef context, JSValueRef value);77 /*!78 @function79 @abstract Clears the exception in a JavaScript execution context.80 @param context The JSContext whose exception you want to clear.81 */82 void JSContextClearException(JSContextRef context);83 84 63 // Evaluation 85 64 /*!
Note:
See TracChangeset
for help on using the changeset viewer.