Skip to content

⬅️ Back to Table of Contents

📄 name-shadowed-in-body.ts

📊 Analysis Summary

Metric Count
🔧 Functions 1
📊 Variables & Constants 2

📚 Table of Contents

🛠️ File Location:

📂 packages/scope-manager/tests/fixtures/functions/function-declaration/name-shadowed-in-body.ts

Variables & Constants

Name Type Kind Value Exported
Foo 1 const 1
usage typeof Foo const Foo

Functions

Foo(): void

Code
function Foo() {
  const Foo = 1;
}
  • Return Type: void