Commit 19b479d8 by Zachary Snow

fix incorrect indentation in PortDecl.hs

parent bef9b1a3
......@@ -34,9 +34,9 @@ traverseDescription other = other
convertPackageItem :: PackageItem -> PackageItem
convertPackageItem (Function l t x decls stmts) =
Function l t x (convertTFDecls decls) stmts
Function l t x (convertTFDecls decls) stmts
convertPackageItem (Task l x decls stmts) =
Task l x (convertTFDecls decls) stmts
Task l x (convertTFDecls decls) stmts
convertPackageItem other = other
convertPorts :: Identifier -> [Identifier] -> [ModuleItem] -> [ModuleItem]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment