Modules export constants if any superclass exports them (2nd try)

Reviewed By: fkgozali

Differential Revision: D4098128

fbshipit-source-id: 73d7f068373b3a9dd5af1881b4cca4e54856cec6
This commit is contained in:
Pieter De Baets 2016-10-31 04:52:58 -07:00 committed by Facebook Github Bot
parent bd867c1105
commit 7063ff466a
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@
// If a module overrides `constantsToExport` then we must assume that it
// must be called on the main thread, because it may need to access UIKit.
_hasConstantsToExport = RCTClassOverridesInstanceMethod(_moduleClass, @selector(constantsToExport));
_hasConstantsToExport = [_moduleClass instancesRespondToSelector:@selector(constantsToExport)];
}
- (instancetype)initWithModuleClass:(Class)moduleClass