Skip to content

Commit

Permalink
Rename propertyAccessCall → resolveCall
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Oct 6, 2024
1 parent 36b85ba commit 72b4827
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import type ts from 'typescript';
import importCall from './importCall.js';
import importType from './importType.js';
import jsDocType from './jsDocType.js';
import propertyAccessCall from './propertyAccessCall.js';
import requireCall from './requireCall.js';
import resolveCall from './resolveCall.js';

const visitors = [importCall, importType, jsDocType, propertyAccessCall, requireCall];
const visitors = [importCall, importType, jsDocType, resolveCall, requireCall];

export default (sourceFile: ts.SourceFile) => visitors.map(v => v(sourceFile));

0 comments on commit 72b4827

Please sign in to comment.