MCPcopy
hub / github.com/eslint/eslint / enter

Function enter

lib/rules/no-unmodified-loop-condition.js:264–271  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

262 Traverser.traverse(root, {
263 visitorKeys: sourceCode.visitorKeys,
264 enter(node) {
265 if (DYNAMIC_PATTERN.test(node.type)) {
266 retv = true;
267 this.break();
268 } else if (SKIP_PATTERN.test(node.type)) {
269 this.skip();
270 }
271 },
272 });
273
274 return retv;

Callers

nothing calls this directly

Calls 2

breakMethod · 0.65
skipMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…