Changeset 34599 in webkit for trunk/JavaScriptCore/API/JSValueRef.h
- Timestamp:
- Jun 16, 2008, 6:48:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSValueRef.h
r29663 r34599 1 // -*- mode: c++; c-basic-offset: 4 -*-2 1 /* 3 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. … … 128 127 JS_EXPORT bool JSValueIsObjectOfClass(JSContextRef ctx, JSValueRef value, JSClassRef jsClass); 129 128 130 / / Comparing values129 /* Comparing values */ 131 130 132 131 /*! … … 162 161 JS_EXPORT bool JSValueIsInstanceOfConstructor(JSContextRef ctx, JSValueRef value, JSObjectRef constructor, JSValueRef* exception); 163 162 164 / / Creating values163 /* Creating values */ 165 164 166 165 /*! … … 208 207 JS_EXPORT JSValueRef JSValueMakeString(JSContextRef ctx, JSStringRef string); 209 208 210 / / Converting to primitive values209 /* Converting to primitive values */ 211 210 212 211 /*! … … 249 248 JS_EXPORT JSObjectRef JSValueToObject(JSContextRef ctx, JSValueRef value, JSValueRef* exception); 250 249 251 / / Garbage collection250 /* Garbage collection */ 252 251 /*! 253 252 @function … … 275 274 #endif 276 275 277 #endif / / JSValueRef_h276 #endif /* JSValueRef_h */
Note:
See TracChangeset
for help on using the changeset viewer.