mirror of
https://github.com/github/semantic.git
synced 2024-12-24 23:42:31 +03:00
Assign wildcards _
in type positions
This commit is contained in:
parent
66c28dd142
commit
1ca5894806
@ -121,6 +121,7 @@ type Syntax = '[
|
||||
, Syntax.TypeSynonym
|
||||
, Syntax.UnitConstructor
|
||||
, Syntax.VariableSymbol
|
||||
, Syntax.Wildcard
|
||||
, Type.TypeParameters
|
||||
, []
|
||||
]
|
||||
@ -341,6 +342,7 @@ expressionChoices = [
|
||||
, variableOperator
|
||||
, variableSymbol
|
||||
, where'
|
||||
, wildcard
|
||||
]
|
||||
|
||||
fields :: Assignment
|
||||
@ -750,6 +752,9 @@ variableIdentifiers = makeTerm <$> location <*> many variableIdentifier
|
||||
where' :: Assignment
|
||||
where' = makeTerm <$> (symbol Where <|> symbol Where') <*> children (manyTerm expression)
|
||||
|
||||
wildcard :: Assignment
|
||||
wildcard = makeTerm <$> token Wildcard <*> pure Syntax.Wildcard
|
||||
|
||||
-- | Helpers
|
||||
|
||||
commentedTerm :: Assignment -> Assignment
|
||||
|
@ -755,3 +755,12 @@ instance Ord1 KindTupleType where liftCompare = genericLiftCompare
|
||||
instance Show1 KindTupleType where liftShowsPrec = genericLiftShowsPrec
|
||||
|
||||
instance Evaluatable KindTupleType
|
||||
|
||||
data Wildcard a = Wildcard
|
||||
deriving (Declarations1, Diffable, Eq, Foldable, FreeVariables1, Functor, Generic1, Hashable1, Mergeable, Ord, Show, ToJSONFields1, Traversable)
|
||||
|
||||
instance Eq1 Wildcard where liftEq = genericLiftEq
|
||||
instance Ord1 Wildcard where liftCompare = genericLiftCompare
|
||||
instance Show1 Wildcard where liftShowsPrec = genericLiftShowsPrec
|
||||
|
||||
instance Evaluatable Wildcard
|
||||
|
Loading…
Reference in New Issue
Block a user