RedMickey

Results 21 comments of RedMickey

Hi @willholen and thanks for your response. With respect to usage of `returnByValue` flag, for example [here](https://github.com/microsoft/vscode-js-debug/blob/master/src/targets/node/nodeAttacherBase.ts#L69-L73) `js-debug` uses `returnByValue: true` parameter when it calls `Runtime.evaluate` method. So, `js-debug` extension...

@willholen, we tried to test this fix on `0.63.0-rc.0` version, but we faced the problem that when 'js-debug' extension sends `Debugger.enable` request, a Hermes app doesn't replies on it and...

@willholen, we had a discussion with `js-debug` team about Hermes debugging issues, and we found out that it seems Hermes handles `Debugger.setBreakpoint` request incorrectly: the debugger sends specific script Id...

@willholen, I tried to build and launch the demo app using this sequence and didn't face any problems. The demo project is just a plain RN v0.62.2 project where we...

@willholen, we found out the reason of incorrect handling of `Debugger.setBreakpoint` request. ``` { "id": 16, "method": "Debugger.setBreakpoint", "params": { "location": { "scriptId": "2", "lineNumber": 105706, "columnNumber": 0 } }...

@willholen, thank you for the fix of column 0 handling. I also tried to debug a Hermes app version `0.63.0-rc.1`. It was built without problems and now an application can...

@willholen, I tried to build and launch apps from these packages [0.0.0-e57a2d80a](https://www.npmjs.com/package/react-native/v/0.0.0-e57a2d80a), [0.0.0-aece57be2](https://www.npmjs.com/package/react-native/v/0.0.0-aece57be2), [0.0.0-f535c8b4b](https://www.npmjs.com/package/react-native/v/0.0.0-f535c8b4b). I created RN projects using `npx react-native init` command, e. g.: ``` npx react-native init AwesomeProject...

Hello, with respect to showing network requests, it would be really great if the extension could display network traffic like Google Chrome does in the Network tab. I think It...

Hi @erisu, could you please review this PR?

> The problem I see with this PR: Until End of March 2021 the old browser is still supported by MS - is there a clever way to support both...