Skip to content

⬅️ Back to Table of Contents

📄 scope.ts

📊 Analysis Summary

Metric Count
🔧 Functions 1
📊 Variables & Constants 3

📚 Table of Contents

🛠️ File Location:

📂 packages/scope-manager/tests/fixtures/functions/function-expression/scope.ts

Variables & Constants

Name Type Kind Value Exported
i number let/var 0
j number let/var 20
unresolved any const j

Functions

foo(): void

Code
function () {
  let i = 0;
  var j = 20;

  i;
}
  • Return Type: void