Changeset 37333 in webkit for trunk/JavaScriptCore/API
- Timestamp:
- Oct 6, 2008, 10:50:08 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSValueRef.cpp
r37215 r37333 189 189 } 190 190 191 bool JSValueToBoolean(JSContextRef ctx, JSValueRef value) 192 { 193 ExecState* exec = toJS(ctx); 194 JSValue* jsValue = toJS(value); 195 return jsValue->toBoolean(exec); 191 bool JSValueToBoolean(JSContextRef, JSValueRef value) 192 { 193 return toJS(value)->toBoolean(); 196 194 } 197 195
Note:
See TracChangeset
for help on using the changeset viewer.