1
1
mirror of https://github.com/github/semantic.git synced 2024-11-29 11:02:26 +03:00

Define a Python newtype wrapping a module.

This commit is contained in:
Rob Rix 2019-09-18 17:02:20 -04:00
parent b7f9b4ea20
commit 48cd097a6b
No known key found for this signature in database
GPG Key ID: F188A01508EA1CF7

View File

@ -1,2 +1,7 @@
module Tags.Taggable.Precise
() where
( Python(..)
) where
import qualified TreeSitter.Python.AST as Python
newtype Python a = Python { getPython :: Python.Module a }