Skip to content

Instantly share code, notes, and snippets.

@hotsphink
Created March 3, 2025 18:36
Show Gist options
  • Save hotsphink/dc0b2578142706eedb91d21536765443 to your computer and use it in GitHub Desktop.
Save hotsphink/dc0b2578142706eedb91d21536765443 to your computer and use it in GitHub Desktop.
mkgist-created gist
g = newGlobal({ newCompartment: true });
dbg = new Debugger();
dbg.addDebuggee(g);
dbg.onNewScript = (script) => {
const src = script.source;
};
g.eval(`function f() { return "♬"; }`);
g.eval(`function f2() { return "x"; }`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment