MCPcopy
hub / github.com/webpack/webpack / walkWithStatement

Method walkWithStatement

lib/javascript/JavascriptParser.js:2513–2518  ·  view source on GitHub ↗

* Walk with statement. * @param {WithStatement} statement with statement

(statement)

Source from the content-addressed store, hash-verified

2511 * @param {WithStatement} statement with statement
2512 */
2513 walkWithStatement(statement) {
2514 this.inBlockScope(() => {
2515 this.walkExpression(statement.object);
2516 this.walkNestedStatement(statement.body);
2517 });
2518 }
2519
2520 /**
2521 * Pre walk switch statement.

Callers 1

walkStatementMethod · 0.95

Calls 3

inBlockScopeMethod · 0.95
walkExpressionMethod · 0.95
walkNestedStatementMethod · 0.95

Tested by

no test coverage detected