mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
f3fab5184e
Summary: After cleaning up JS SourceMap code, these native methods are not needed anymore. On iOS it saves another 30+ Mb during development. Reviewed By: javache, astreet Differential Revision: D3348975 fbshipit-source-id: a68ae9b00b4dbaa374b421029ae676fc69ae5a75
19 lines
481 B
Objective-C
19 lines
481 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "RCTBridgeModule.h"
|
|
|
|
@interface RCTSourceCode : NSObject <RCTBridgeModule>
|
|
|
|
@property (nonatomic, copy) NSURL *scriptURL;
|
|
|
|
@end
|