mirror of
https://github.com/github/semantic.git
synced 2024-11-25 02:58:36 +03:00
Move the definition of Term up.
This commit is contained in:
parent
a6010a1436
commit
e5ecd7c849
@ -18,6 +18,12 @@ import Tags.Tag
|
||||
import qualified Tags.Taggable.Precise as Tags
|
||||
import qualified TreeSitter.Python.AST as Py
|
||||
|
||||
newtype Term a = Term { getTerm :: Py.Module a }
|
||||
|
||||
instance Tags.ToTags Term where
|
||||
tags = tags . getTerm
|
||||
|
||||
|
||||
class ToTags t where
|
||||
tags
|
||||
:: ( Carrier sig m
|
||||
@ -27,12 +33,6 @@ class ToTags t where
|
||||
=> t Loc
|
||||
-> m ()
|
||||
|
||||
newtype Term a = Term { getTerm :: Py.Module a }
|
||||
|
||||
instance Tags.ToTags Term where
|
||||
tags = tags . getTerm
|
||||
|
||||
|
||||
instance (ToTagsBy strategy t, strategy ~ ToTagsInstance t) => ToTags t where
|
||||
tags = tags' @strategy
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user