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

Function beginScriptLoopBlock

test/fixtures/snapshot/typescript.js:103571–103578  ·  view source on GitHub ↗

* Begins a code block that supports `break` or `continue` statements that are defined in * the source tree and not from generated code. * * @param labelText Names from containing labeled statements.

()

Source from the content-addressed store, hash-verified

103569 * @param labelText Names from containing labeled statements.
103570 */
103571 function beginScriptLoopBlock() {
103572 beginBlock({
103573 kind: 3 /* CodeBlockKind.Loop */,
103574 isScript: true,
103575 breakLabel: -1,
103576 continueLabel: -1
103577 });
103578 }
103579 /**
103580 * Begins a code block that supports `break` or `continue` statements that are defined in
103581 * generated code. Returns a label used to mark the operation to which to jump when a

Callers 4

visitDoStatementFunction · 0.85
visitWhileStatementFunction · 0.85
visitForStatementFunction · 0.85
visitForInStatementFunction · 0.85

Calls 1

beginBlockFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…