MCPcopy Index your code
hub / github.com/nodejs/node / gen8

Function gen8

deps/v8/test/debugger/debug/debug-scopes-suspended-generators.js:229–237  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

227// Nested with blocks using in-place object literals.
228
229function *gen8() {
230 with({a: 1,b: 2}) {
231 with({a: 2,b: 1}) {
232 yield a;
233 }
234 yield a;
235 }
236 return 3;
237}
238
239g = gen8();
240g.next();

Calls

no outgoing calls

Tested by

no test coverage detected