Remove unused custom type constructors

This commit is contained in:
Jeroen Engels 2020-01-15 15:40:34 +01:00
parent 048ade02af
commit 6e5d8193ac
2 changed files with 0 additions and 16 deletions

View File

@ -447,16 +447,9 @@ type VariableType
| FunctionParameter
| LetVariable
| PatternVariable
| ImportedItem ImportType
| Port
type ImportType
= ImportedVariable
| ImportedType
| ImportedOperator
declarationVisitor : Node Declaration -> Rule.Direction -> InnerContext -> InnerContext
declarationVisitor declaration direction context =
case ( direction, Node.value declaration ) of

View File

@ -98,8 +98,6 @@ type alias InnerModuleContext =
type ExposedElement
= Function
| TypeOrTypeAlias
| ExposedType Bool
type alias Scope =
@ -742,16 +740,9 @@ type VariableType
| FunctionParameter
| LetVariable
| PatternVariable
| ImportedItem ImportType
| Port
type ImportType
= ImportedVariable
| ImportedType
| ImportedOperator
declarationVisitor : Node Declaration -> Rule.Direction -> InnerModuleContext -> InnerModuleContext
declarationVisitor declaration direction context =
case ( direction, Node.value declaration ) of