Changeset 271463 in webkit
- Timestamp:
- Jan 13, 2021, 3:18:29 PM (6 years ago)
- Location:
- branches/safari-611-branch/Source/JavaScriptCore
- Files:
-
- 2 edited
-
API/JSValueRef.cpp (modified) (2 diffs)
-
ChangeLog (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-611-branch/Source/JavaScriptCore/API/JSValueRef.cpp
r271462 r271463 65 65 if (jsValue.isUndefined()) 66 66 return kJSTypeUndefined; 67 if ( !jsValue ||jsValue.isNull())67 if (jsValue.isNull()) 68 68 return kJSTypeNull; 69 69 if (jsValue.isBoolean()) … … 106 106 return toJS(globalObject, value).isNull(); 107 107 #else 108 return !value ||toJS(value).isNull();108 return toJS(value).isNull(); 109 109 #endif 110 110 } -
branches/safari-611-branch/Source/JavaScriptCore/ChangeLog
r271462 r271463 1 2021-01-13 Russell Epstein <repstein@apple.com> 2 3 Revert r270700. rdar://problem/73165685 4 1 5 2021-01-13 Russell Epstein <repstein@apple.com> 2 6
Note:
See TracChangeset
for help on using the changeset viewer.