<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[160454] trunk/Source/JavaScriptCore</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/160454">160454</a></dd>
<dt>Author</dt> <dd>mrowe@apple.com</dd>
<dt>Date</dt> <dd>2013-12-11 14:13:23 -0800 (Wed, 11 Dec 2013)</dd>
</dl>

<h3>Log Message</h3>
<pre>&lt;https://webkit.org/b/125141&gt; Modernize the JavaScriptCore API headers
&lt;rdar://problem/15540121&gt;

This consists of three main changes:
1) Converting the return type of initializer methods to instancetype.
2) Declaring properties rather than getters and setters.
3) Tagging C API methods with information about their memory management semantics.

Changing the declarations from getters and setters to properties also required
updating the headerdoc in a number of places.

Reviewed by Anders Carlsson.

* API/JSContext.h:
* API/JSContext.mm:
* API/JSManagedValue.h:
* API/JSManagedValue.mm:
* API/JSStringRefCF.h:
* API/JSValue.h:
* API/JSVirtualMachine.h:
* API/JSVirtualMachine.mm:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceJavaScriptCoreAPIJSContexth">trunk/Source/JavaScriptCore/API/JSContext.h</a></li>
<li><a href="#trunkSourceJavaScriptCoreAPIJSContextmm">trunk/Source/JavaScriptCore/API/JSContext.mm</a></li>
<li><a href="#trunkSourceJavaScriptCoreAPIJSManagedValueh">trunk/Source/JavaScriptCore/API/JSManagedValue.h</a></li>
<li><a href="#trunkSourceJavaScriptCoreAPIJSManagedValuemm">trunk/Source/JavaScriptCore/API/JSManagedValue.mm</a></li>
<li><a href="#trunkSourceJavaScriptCoreAPIJSStringRefCFh">trunk/Source/JavaScriptCore/API/JSStringRefCF.h</a></li>
<li><a href="#trunkSourceJavaScriptCoreAPIJSValueh">trunk/Source/JavaScriptCore/API/JSValue.h</a></li>
<li><a href="#trunkSourceJavaScriptCoreAPIJSVirtualMachineh">trunk/Source/JavaScriptCore/API/JSVirtualMachine.h</a></li>
<li><a href="#trunkSourceJavaScriptCoreAPIJSVirtualMachinemm">trunk/Source/JavaScriptCore/API/JSVirtualMachine.mm</a></li>
<li><a href="#trunkSourceJavaScriptCoreChangeLog">trunk/Source/JavaScriptCore/ChangeLog</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceJavaScriptCoreAPIJSContexth"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/API/JSContext.h (160453 => 160454)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/API/JSContext.h        2013-12-11 22:06:13 UTC (rev 160453)
+++ trunk/Source/JavaScriptCore/API/JSContext.h        2013-12-11 22:13:23 UTC (rev 160454)
</span><span class="lines">@@ -58,7 +58,7 @@
</span><span class="cx"> @abstract Create a JSContext.
</span><span class="cx"> @result The new context.
</span><span class="cx"> */
</span><del>-- (id)init;
</del><ins>+- (instancetype)init;
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @method
</span><span class="lines">@@ -66,7 +66,7 @@
</span><span class="cx"> @param virtualMachine The JSVirtualMachine in which the context will be created.
</span><span class="cx"> @result The new context.
</span><span class="cx"> */
</span><del>-- (id)initWithVirtualMachine:(JSVirtualMachine *)virtualMachine;
</del><ins>+- (instancetype)initWithVirtualMachine:(JSVirtualMachine *)virtualMachine;
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @methodgroup Evaluating Scripts
</span><span class="lines">@@ -117,14 +117,14 @@
</span><span class="cx"> @methodgroup Global Properties
</span><span class="cx"> */
</span><span class="cx"> /*!
</span><del>-@method
</del><ins>+@property
</ins><span class="cx"> @abstract Get the global object of the context.
</span><span class="cx"> @discussion This method retrieves the global object of the JavaScript execution context.
</span><span class="cx">  Instances of JSContext originating from WebKit will return a reference to the
</span><span class="cx">  WindowProxy object.
</span><span class="cx"> @result The global object.
</span><span class="cx"> */
</span><del>-- (JSValue *)globalObject;
</del><ins>+@property (readonly, strong) JSValue *globalObject;
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @property
</span><span class="lines">@@ -143,7 +143,7 @@
</span><span class="cx">  If a JSValue originating from a different JSVirtualMachine than this context
</span><span class="cx">  is assigned to this property, an Objective-C exception will be raised.
</span><span class="cx"> */
</span><del>-@property(retain) JSValue *exception;
</del><ins>+@property (strong) JSValue *exception;
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @property
</span><span class="lines">@@ -155,14 +155,14 @@
</span><span class="cx">  Setting this value to nil will result in all uncaught exceptions thrown from
</span><span class="cx">  the API being silently consumed.
</span><span class="cx"> */
</span><del>-@property(copy) void(^exceptionHandler)(JSContext *context, JSValue *exception);
</del><ins>+@property (copy) void(^exceptionHandler)(JSContext *context, JSValue *exception);
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @property
</span><span class="cx"> @discussion All instances of JSContext are associated with a single JSVirtualMachine. The
</span><span class="cx">  virtual machine provides an &quot;object space&quot; or set of execution resources.
</span><span class="cx"> */
</span><del>-@property(readonly, retain) JSVirtualMachine *virtualMachine;
</del><ins>+@property (readonly, strong) JSVirtualMachine *virtualMachine;
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @property
</span><span class="lines">@@ -187,7 +187,7 @@
</span><span class="cx">  and then the value converted to a string used to resolve a property of the
</span><span class="cx">  global object.
</span><span class="cx"> */
</span><del>-@interface JSContext(SubscriptSupport)
</del><ins>+@interface JSContext (SubscriptSupport)
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> method
</span><span class="lines">@@ -211,7 +211,7 @@
</span><span class="cx"> @category
</span><span class="cx"> @discussion These functions are for bridging between the C API and the Objective-C API.
</span><span class="cx"> */
</span><del>-@interface JSContext(JSContextRefSupport)
</del><ins>+@interface JSContext (JSContextRefSupport)
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @method
</span><span class="lines">@@ -222,11 +222,11 @@
</span><span class="cx"> + (JSContext *)contextWithJSGlobalContextRef:(JSGlobalContextRef)jsGlobalContextRef;
</span><span class="cx"> 
</span><span class="cx"> /*!
</span><del>-@method
</del><ins>+@property
</ins><span class="cx"> @abstract Get the C API counterpart wrapped by a JSContext.
</span><span class="cx"> @result The C API equivalent of this JSContext.
</span><span class="cx"> */
</span><del>-- (JSGlobalContextRef)JSGlobalContextRef;
</del><ins>+@property (readonly) JSGlobalContextRef JSGlobalContextRef;
</ins><span class="cx"> @end
</span><span class="cx"> 
</span><span class="cx"> #endif
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreAPIJSContextmm"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/API/JSContext.mm (160453 => 160454)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/API/JSContext.mm        2013-12-11 22:06:13 UTC (rev 160453)
+++ trunk/Source/JavaScriptCore/API/JSContext.mm        2013-12-11 22:13:23 UTC (rev 160454)
</span><span class="lines">@@ -54,12 +54,12 @@
</span><span class="cx">     return m_context;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-- (id)init
</del><ins>+- (instancetype)init
</ins><span class="cx"> {
</span><span class="cx">     return [self initWithVirtualMachine:[[[JSVirtualMachine alloc] init] autorelease]];
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-- (id)initWithVirtualMachine:(JSVirtualMachine *)virtualMachine
</del><ins>+- (instancetype)initWithVirtualMachine:(JSVirtualMachine *)virtualMachine
</ins><span class="cx"> {
</span><span class="cx">     self = [super init];
</span><span class="cx">     if (!self)
</span><span class="lines">@@ -198,9 +198,9 @@
</span><span class="cx"> 
</span><span class="cx"> @end
</span><span class="cx"> 
</span><del>-@implementation JSContext(Internal)
</del><ins>+@implementation JSContext (Internal)
</ins><span class="cx"> 
</span><del>-- (id)initWithGlobalContextRef:(JSGlobalContextRef)context
</del><ins>+- (instancetype)initWithGlobalContextRef:(JSGlobalContextRef)context
</ins><span class="cx"> {
</span><span class="cx">     self = [super init];
</span><span class="cx">     if (!self)
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreAPIJSManagedValueh"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/API/JSManagedValue.h (160453 => 160454)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/API/JSManagedValue.h        2013-12-11 22:06:13 UTC (rev 160453)
+++ trunk/Source/JavaScriptCore/API/JSManagedValue.h        2013-12-11 22:13:23 UTC (rev 160454)
</span><span class="lines">@@ -70,15 +70,15 @@
</span><span class="cx"> @param value
</span><span class="cx"> @result The new JSManagedValue.
</span><span class="cx"> */
</span><del>-- (id)initWithValue:(JSValue *)value;
</del><ins>+- (instancetype)initWithValue:(JSValue *)value;
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><del>-@method
</del><ins>+@property
</ins><span class="cx"> @abstract Get the JSValue from the JSManagedValue.
</span><span class="cx"> @result The corresponding JSValue for this JSManagedValue or 
</span><span class="cx">  nil if the JSValue has been collected.
</span><span class="cx"> */
</span><del>-- (JSValue *)value;
</del><ins>+@property (readonly, strong) JSValue *value;
</ins><span class="cx"> 
</span><span class="cx"> @end
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreAPIJSManagedValuemm"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/API/JSManagedValue.mm (160453 => 160454)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/API/JSManagedValue.mm        2013-12-11 22:06:13 UTC (rev 160453)
+++ trunk/Source/JavaScriptCore/API/JSManagedValue.mm        2013-12-11 22:13:23 UTC (rev 160454)
</span><span class="lines">@@ -176,12 +176,12 @@
</span><span class="cx">     return [[[self alloc] initWithValue:value] autorelease];
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-- (id)init
</del><ins>+- (instancetype)init
</ins><span class="cx"> {
</span><span class="cx">     return [self initWithValue:nil];
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-- (id)initWithValue:(JSValue *)value
</del><ins>+- (instancetype)initWithValue:(JSValue *)value
</ins><span class="cx"> {
</span><span class="cx">     self = [super init];
</span><span class="cx">     if (!self)
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreAPIJSStringRefCFh"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/API/JSStringRefCF.h (160453 => 160454)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/API/JSStringRefCF.h        2013-12-11 22:06:13 UTC (rev 160453)
+++ trunk/Source/JavaScriptCore/API/JSStringRefCF.h        2013-12-11 22:13:23 UTC (rev 160454)
</span><span class="lines">@@ -51,7 +51,7 @@
</span><span class="cx"> @param string     The JSString to copy into the new CFString.
</span><span class="cx"> @result           A CFString containing string. Ownership follows the Create Rule.
</span><span class="cx"> */
</span><del>-JS_EXPORT CFStringRef JSStringCopyCFString(CFAllocatorRef alloc, JSStringRef string);
</del><ins>+JS_EXPORT CFStringRef JSStringCopyCFString(CFAllocatorRef alloc, JSStringRef string) CF_RETURNS_RETAINED;
</ins><span class="cx"> 
</span><span class="cx"> #ifdef __cplusplus
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreAPIJSValueh"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/API/JSValue.h (160453 => 160454)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/API/JSValue.h        2013-12-11 22:06:13 UTC (rev 160453)
+++ trunk/Source/JavaScriptCore/API/JSValue.h        2013-12-11 22:13:23 UTC (rev 160454)
</span><span class="lines">@@ -61,7 +61,7 @@
</span><span class="cx"> @property
</span><span class="cx"> @abstract The JSContext that this value originates from.
</span><span class="cx"> */
</span><del>-@property(readonly, retain) JSContext *context;
</del><ins>+@property (readonly, strong) JSContext *context;
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @methodgroup Creating JavaScript Values
</span><span class="lines">@@ -483,7 +483,7 @@
</span><span class="cx">  return type of the latter.
</span><span class="cx">  Support is provided for structs of type CGPoint, NSRange, CGRect and CGSize.
</span><span class="cx"> */
</span><del>-@interface JSValue(StructSupport)
</del><ins>+@interface JSValue (StructSupport)
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @method
</span><span class="lines">@@ -572,7 +572,7 @@
</span><span class="cx">  An object key passed as a subscript will be converted to a JavaScript value,
</span><span class="cx">  and then the value converted to a string used as a property name.
</span><span class="cx"> */
</span><del>-@interface JSValue(SubscriptSupport)
</del><ins>+@interface JSValue (SubscriptSupport)
</ins><span class="cx"> 
</span><span class="cx"> - (JSValue *)objectForKeyedSubscript:(id)key;
</span><span class="cx"> - (JSValue *)objectAtIndexedSubscript:(NSUInteger)index;
</span><span class="lines">@@ -585,7 +585,7 @@
</span><span class="cx"> @category
</span><span class="cx"> @discussion  These functions are for bridging between the C API and the Objective-C API.
</span><span class="cx"> */
</span><del>-@interface JSValue(JSValueRefSupport)
</del><ins>+@interface JSValue (JSValueRefSupport)
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @method
</span><span class="lines">@@ -597,11 +597,11 @@
</span><span class="cx"> + (JSValue *)valueWithJSValueRef:(JSValueRef)value inContext:(JSContext *)context;
</span><span class="cx"> 
</span><span class="cx"> /*!
</span><del>-@method
</del><ins>+@property
</ins><span class="cx"> @abstract Returns the C API counterpart wrapped by a JSContext.
</span><span class="cx"> @result The C API equivalent of this JSValue.
</span><span class="cx"> */
</span><del>-- (JSValueRef)JSValueRef;
</del><ins>+@property (readonly) JSValueRef JSValueRef;
</ins><span class="cx"> @end
</span><span class="cx"> 
</span><span class="cx"> #ifdef __cplusplus
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreAPIJSVirtualMachineh"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/API/JSVirtualMachine.h (160453 => 160454)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/API/JSVirtualMachine.h        2013-12-11 22:06:13 UTC (rev 160453)
+++ trunk/Source/JavaScriptCore/API/JSVirtualMachine.h        2013-12-11 22:13:23 UTC (rev 160454)
</span><span class="lines">@@ -48,7 +48,7 @@
</span><span class="cx"> @method
</span><span class="cx"> @abstract Create a new JSVirtualMachine.
</span><span class="cx"> */
</span><del>-- (id)init;
</del><ins>+- (instancetype)init;
</ins><span class="cx"> 
</span><span class="cx"> /*!
</span><span class="cx"> @methodgroup Memory Management
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreAPIJSVirtualMachinemm"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/API/JSVirtualMachine.mm (160453 => 160454)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/API/JSVirtualMachine.mm        2013-12-11 22:06:13 UTC (rev 160453)
+++ trunk/Source/JavaScriptCore/API/JSVirtualMachine.mm        2013-12-11 22:13:23 UTC (rev 160454)
</span><span class="lines">@@ -86,7 +86,7 @@
</span><span class="cx">     NSMapTable *m_externalObjectGraph;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-- (id)init
</del><ins>+- (instancetype)init
</ins><span class="cx"> {
</span><span class="cx">     JSContextGroupRef group = JSContextGroupCreate();
</span><span class="cx">     self = [self initWithContextGroupRef:group];
</span><span class="lines">@@ -95,7 +95,7 @@
</span><span class="cx">     return self;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-- (id)initWithContextGroupRef:(JSContextGroupRef)group
</del><ins>+- (instancetype)initWithContextGroupRef:(JSContextGroupRef)group
</ins><span class="cx"> {
</span><span class="cx">     self = [super init];
</span><span class="cx">     if (!self)
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/ChangeLog (160453 => 160454)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/ChangeLog        2013-12-11 22:06:13 UTC (rev 160453)
+++ trunk/Source/JavaScriptCore/ChangeLog        2013-12-11 22:13:23 UTC (rev 160454)
</span><span class="lines">@@ -1,5 +1,29 @@
</span><span class="cx"> 2013-12-11  Mark Rowe  &lt;mrowe@apple.com&gt;
</span><span class="cx"> 
</span><ins>+        &lt;https://webkit.org/b/125141&gt; Modernize the JavaScriptCore API headers
+        &lt;rdar://problem/15540121&gt;
+
+        This consists of three main changes:
+        1) Converting the return type of initializer methods to instancetype.
+        2) Declaring properties rather than getters and setters.
+        3) Tagging C API methods with information about their memory management semantics.
+
+        Changing the declarations from getters and setters to properties also required
+        updating the headerdoc in a number of places.
+
+        Reviewed by Anders Carlsson.
+
+        * API/JSContext.h:
+        * API/JSContext.mm:
+        * API/JSManagedValue.h:
+        * API/JSManagedValue.mm:
+        * API/JSStringRefCF.h:
+        * API/JSValue.h:
+        * API/JSVirtualMachine.h:
+        * API/JSVirtualMachine.mm:
+
+2013-12-11  Mark Rowe  &lt;mrowe@apple.com&gt;
+
</ins><span class="cx">         &lt;https://webkit.org/b/125559&gt; Move JavaScriptCore off the legacy WebKit availability macros
</span><span class="cx"> 
</span><span class="cx">         The legacy WebKit availability macros are verbose, confusing, and provide no benefit over
</span></span></pre>
</div>
</div>

</body>
</html>