JavaScriptCore Changes for Objective-C
JavaScriptCore
JSBase.h
Removed #def WTF_EXPORT_PRIVATE
JSValue.h
Added JSValue.isArray
Added JSValue.isDate
Modified JSValue.isBoolean
Declaration | |
---|---|
From | - (BOOL)isBoolean |
To | @property(readonly) BOOL isBoolean |
Modified JSValue.isNull
Declaration | |
---|---|
From | - (BOOL)isNull |
To | @property(readonly) BOOL isNull |
Modified JSValue.isNumber
Declaration | |
---|---|
From | - (BOOL)isNumber |
To | @property(readonly) BOOL isNumber |
Modified JSValue.isObject
Declaration | |
---|---|
From | - (BOOL)isObject |
To | @property(readonly) BOOL isObject |
Modified JSValue.isString
Declaration | |
---|---|
From | - (BOOL)isString |
To | @property(readonly) BOOL isString |
Modified JSValue.isUndefined
Declaration | |
---|---|
From | - (BOOL)isUndefined |
To | @property(readonly) BOOL isUndefined |
JSValueRef.h
Added JSValueIsArray()
Added JSValueIsDate()