Skip to content

Commit

Permalink
Add missing visitor params for DottedSetStatement (#748)
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Nov 30, 2022
1 parent 932b574 commit f05e6e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/astUtils/visitors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export function createVisitor(
ForStatement?: (statement: ForStatement, parent?: Statement, owner?: any, key?: any) => Statement | void;
ForEachStatement?: (statement: ForEachStatement, parent?: Statement, owner?: any, key?: any) => Statement | void;
WhileStatement?: (statement: WhileStatement, parent?: Statement, owner?: any, key?: any) => Statement | void;
DottedSetStatement?: (statement: DottedSetStatement, parent?: Statement) => Statement | void;
DottedSetStatement?: (statement: DottedSetStatement, parent?: Statement, owner?: any, key?: any) => Statement | void;
IndexedSetStatement?: (statement: IndexedSetStatement, parent?: Statement, owner?: any, key?: any) => Statement | void;
LibraryStatement?: (statement: LibraryStatement, parent?: Statement, owner?: any, key?: any) => Statement | void;
NamespaceStatement?: (statement: NamespaceStatement, parent?: Statement, owner?: any, key?: any) => Statement | void;
Expand Down

0 comments on commit f05e6e7

Please sign in to comment.