Skip to content
This repository has been archived by the owner on Sep 27, 2020. It is now read-only.

Fix missing FunctionCall in Visitor #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,7 @@ export interface Visitor {
ModifierDefinition?: (node: ModifierDefinition) => any;
ModifierInvocation?: (node: ModifierInvocation) => any;
FunctionDefinition?: (node: FunctionDefinition) => any;
FunctionCall?: (node: FunctionCall) => any;
EventDefinition?: (node: EventDefinition) => any;
EnumValue?: (node: EnumValue) => any;
EnumDefinition?: (node: EnumDefinition) => any;
Expand Down Expand Up @@ -621,6 +622,7 @@ export interface Visitor {
'ModifierDefinition:exit'?: (node: ModifierDefinition) => any;
'ModifierInvocation:exit'?: (node: ModifierInvocation) => any;
'FunctionDefinition:exit'?: (node: FunctionDefinition) => any;
'FunctionCall:exit'?: (node: FunctionCall) => any;
'EventDefinition:exit'?: (node: EventDefinition) => any;
'EnumValue:exit'?: (node: EnumValue) => any;
'EnumDefinition:exit'?: (node: EnumDefinition) => any;
Expand Down