Organize ivars in RCTJSCExecutor

Reviewed By: javache

Differential Revision: D3534380

fbshipit-source-id: 364213f24256602471a5b3cd1afe6c7be4aab743
This commit is contained in:
Adam Ernst 2016-07-08 12:19:26 -07:00 committed by Facebook Github Bot 0
parent 7ee2f48451
commit 294173a427

View File

@ -132,16 +132,18 @@ RCT_NOT_IMPLEMENTED(-(instancetype)init)
@implementation RCTJSCExecutor
{
RCTJavaScriptContext *_context;
// Set at init time:
BOOL _useCustomJSCLibrary;
NSThread *_javaScriptThread;
// Set at setUp time:
RCTPerformanceLogger *_performanceLogger;
RCTJSCWrapper *_jscWrapper;
RCTJavaScriptContext *_context;
// Set as needed:
RandomAccessBundleData _randomAccessBundle;
JSValueRef _batchedBridgeRef;
RCTJSCWrapper *_jscWrapper;
BOOL _useCustomJSCLibrary;
RCTPerformanceLogger *_performanceLogger;
}
@synthesize valid = _valid;