📄 CatchClauseDefinition¶
📊 Analysis Summary¶
| Metric | Count |
|---|---|
| 🧱 Classes | 1 |
| 📦 Imports | 3 |
📚 Table of Contents¶
🛠️ File Location:¶
📂 packages/scope-manager/src/definition/CatchClauseDefinition.ts
📦 Imports¶
| Name | Source |
|---|---|
TSESTree |
@typescript-eslint/types |
DefinitionBase |
./DefinitionBase |
DefinitionType |
./DefinitionType |
Classes¶
CatchClauseDefinition¶
Extends: `DefinitionBase< DefinitionType.CatchClause, TSESTree.CatchClause, null, TSESTree.Identifier
`
Class Code
export class CatchClauseDefinition extends DefinitionBase<
DefinitionType.CatchClause,
TSESTree.CatchClause,
null,
TSESTree.Identifier
> {
public readonly isTypeDefinition = false;
public readonly isVariableDefinition = true;
constructor(name: TSESTree.Identifier, node: CatchClauseDefinition['node']) {
super(DefinitionType.CatchClause, name, node, null);
}
}
Generated by Syntax Scribe