@@ -26,8 +26,8 @@ import Language.ProtocolBuffers.Parser
26
26
import qualified Language.ProtocolBuffers.Types as P
27
27
28
28
import Mu.Adapter.ProtoBuf
29
- import Mu.Schema.Definition
30
29
import Mu.Schema.Annotations
30
+ import Mu.Schema.Definition
31
31
32
32
-- | Reads a @.proto@ file and generates a 'Mu.Schema.Definition.Schema'
33
33
-- with all the message types, using the name given
@@ -46,22 +46,22 @@ protobufToDecls :: String -> P.ProtoBuf -> Q [Dec]
46
46
protobufToDecls schemaName p
47
47
= do let schemaName' = mkName schemaName
48
48
(schTy, annTy) <- schemaFromProtoBuf p
49
- schemaDec <- tySynD schemaName' [] (return schTy)
49
+ schemaDec <- tySynD schemaName' [] (pure schTy)
50
50
#if MIN_VERSION_template_haskell(2,15,0)
51
51
annDec <- tySynInstD (tySynEqn Nothing
52
52
[t | AnnotatedSchema ProtoBufAnnotation $(conT schemaName') |]
53
- (return annTy))
53
+ (pure annTy))
54
54
#else
55
55
annDec <- tySynInstD ''AnnotatedSchema
56
- (tySynEqn [ [t | ProtoBufAnnotation |], conT schemaName' ] (return annTy))
56
+ (tySynEqn [ [t | ProtoBufAnnotation |], conT schemaName' ] (pure annTy))
57
57
#endif
58
- return [schemaDec, annDec]
58
+ pure [schemaDec, annDec]
59
59
60
60
schemaFromProtoBuf :: P. ProtoBuf -> Q (Type , Type )
61
61
schemaFromProtoBuf P. ProtoBuf {P. types = tys} = do
62
62
let decls = flattenDecls tys
63
63
(schTys, anns) <- unzip <$> mapM pbTypeDeclToType decls
64
- return (typesToList schTys, typesToList (concat anns))
64
+ pure (typesToList schTys, typesToList (concat anns))
65
65
66
66
flattenDecls :: [P. TypeDeclaration ] -> [P. TypeDeclaration ]
67
67
flattenDecls = concatMap flattenDecl
@@ -73,7 +73,7 @@ flattenDecls = concatMap flattenDecl
73
73
pbTypeDeclToType :: P. TypeDeclaration -> Q (Type , [Type ])
74
74
pbTypeDeclToType (P. DEnum name _ fields) = do
75
75
(tys, anns) <- unzip <$> mapM pbChoiceToType fields
76
- (,) <$> [t |'DEnum $(textToStrLit name) $(return $ typesToList tys)|] <*> pure anns
76
+ (,) <$> [t |'DEnum $(textToStrLit name) $(pure $ typesToList tys)|] <*> pure anns
77
77
where
78
78
pbChoiceToType :: P. EnumField -> Q (Type , Type )
79
79
pbChoiceToType (P. EnumField nm number _)
@@ -138,7 +138,7 @@ typesToList :: [Type] -> Type
138
138
typesToList = foldr (\ y ys -> AppT (AppT PromotedConsT y) ys) PromotedNilT
139
139
140
140
textToStrLit :: T. Text -> Q Type
141
- textToStrLit s = return $ LitT $ StrTyLit $ T. unpack s
141
+ textToStrLit s = pure $ LitT $ StrTyLit $ T. unpack s
142
142
143
143
intToLit :: Int -> Q Type
144
- intToLit n = return $ LitT $ NumTyLit $ toInteger n
144
+ intToLit n = pure $ LitT $ NumTyLit $ toInteger n
0 commit comments