- Reply to issue mrousavy/react-native-vision-camera#2614
- Code review for PR Fix single line text not fully rendered on old architecture
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import MessageQueue from 'react-native/Libraries/BatchedBridge/MessageQueue.js'; | |
| const WHITELIST = ['UIManager']; | |
| const NOOP = () => { }; | |
| let queue = []; | |
| let now = 0; | |
| export default { | |
| start() { | |
| MessageQueue.spy(msg => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Foo(who) { | |
| this.me = who; | |
| } | |
| Foo.prototype.identify = function() { | |
| return "I am " + this.me; | |
| }; | |
| function Bar(who) { | |
| Foo.call(this,"Bar:" + who); |