You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following up on microsoft/vscode-chrome-debug-core#193, I wanted to give everyone here a heads up that we are in the process of changing the way WebAssembly is exposed via the CDP (Chromium DevTools Protocol). Previously we had exposed individual functions as so-called fake scripts via the protocol, in a way that the engine gives you a text format. In the future we'll only expose one script per Wasm module, and will not provide the text format anymore, but only the raw Wasm wire bytes.
The Chromium DevTools front-end is going to turn that into text format instead, probably leveraging an improved version of https://github.com/wasdk/wasmparser (which is also used in Firefox DevTools).
Part of this is that source locations will be consistently represented in terms of Wasm wire byte offsets. http://bit.ly/devtools-wasm-interface contains background information around these changes.
Following up on microsoft/vscode-chrome-debug-core#193, I wanted to give everyone here a heads up that we are in the process of changing the way WebAssembly is exposed via the CDP (Chromium DevTools Protocol). Previously we had exposed individual functions as so-called fake scripts via the protocol, in a way that the engine gives you a text format. In the future we'll only expose one script per Wasm module, and will not provide the text format anymore, but only the raw Wasm wire bytes.
The Chromium DevTools front-end is going to turn that into text format instead, probably leveraging an improved version of https://github.com/wasdk/wasmparser (which is also used in Firefox DevTools).
Part of this is that source locations will be consistently represented in terms of Wasm wire byte offsets. http://bit.ly/devtools-wasm-interface contains background information around these changes.
cc @RReverser @hashseed
The text was updated successfully, but these errors were encountered: