Skip to content

Commit 53dc57c

Browse files
committed
chore: remove unused AST imports
Drop AST imports from src/program.ts that became unused after moving subtree traversal into NodeWalker. This fixes the lint warnings reported in CI and keeps the parameter decorator refactor clean.
1 parent 6f75b5e commit 53dc57c

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

src/program.ts

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -86,61 +86,29 @@ import {
8686
ArrowKind,
8787

8888
Expression,
89-
ArrayLiteralExpression,
90-
AssertionExpression,
91-
BinaryExpression,
92-
CallExpression,
93-
ClassExpression,
94-
CommaExpression,
95-
ElementAccessExpression,
96-
FunctionExpression,
9789
IdentifierExpression,
98-
InstanceOfExpression,
99-
LiteralExpression,
100-
NewExpression,
101-
ObjectLiteralExpression,
102-
ParenthesizedExpression,
103-
PropertyAccessExpression,
104-
TernaryExpression,
105-
TemplateLiteralExpression,
106-
UnaryPostfixExpression,
107-
UnaryPrefixExpression,
10890
LiteralKind,
10991
StringLiteralExpression,
11092

11193
Statement,
112-
BlockStatement,
11394
ClassDeclaration,
11495
DeclarationStatement,
115-
DoStatement,
116-
ExpressionStatement,
11796
EnumDeclaration,
11897
EnumValueDeclaration,
11998
ExportMember,
12099
ExportDefaultStatement,
121100
ExportStatement,
122101
FieldDeclaration,
123-
ForOfStatement,
124-
ForStatement,
125102
FunctionDeclaration,
126-
IfStatement,
127103
ImportDeclaration,
128104
ImportStatement,
129-
IndexSignatureNode,
130105
InterfaceDeclaration,
131106
MethodDeclaration,
132107
NamespaceDeclaration,
133-
ReturnStatement,
134-
SwitchCase,
135-
SwitchStatement,
136-
ThrowStatement,
137-
TryStatement,
138108
TypeDeclaration,
139109
VariableDeclaration,
140110
VariableLikeDeclarationStatement,
141111
VariableStatement,
142-
VoidStatement,
143-
WhileStatement,
144112
ParameterKind,
145113
ParameterNode,
146114
TypeName,

0 commit comments

Comments
 (0)