Conversation
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Under
--print-bytecodethe V8 tab printed fivegenerated bytecodeblocks for a one-line snippet; four of them belonged to the sandbox lockdown shim the engine service loads ahead of the snippet.engine-runtime: whenever any prelude loads (the lockdown shim for d8 and jsc, the console shim for jsc), a finalprelude-end.jsprints a marker line.stdoutis returned from the line after it, and everything before it comes back asmeta.preludeStdout. Output without a marker is returned untouched; Hermes and SpiderMonkey have no preludes and are unaffected.frontend: the playground showspreludeStdoutas a collapsed "sandbox prelude · N lines" row above the engine output; clicking it expands the prelude with the same highlighting and diff support. The snippet's own bytecode is what the pane opens on.Verified on the dev stack: for
function f(x){ return x + 1 } f(41);the pane shows the snippet's two blocks, and the collapsed row holds the 150-line prelude. For jsc oneEnd: undefinedline fromprelude-end.jsitself remains in stdout and the marker text shows up in the-ddisassembly on stderr; that is left for a follow-up.🤖 Generated with Claude Code