remove outdated TODOs

This commit is contained in:
Zachary Snow 2020-07-08 19:39:04 -06:00
parent 671101a30b
commit 9aa8d5a5d3
2 changed files with 0 additions and 7 deletions

View File

@ -235,8 +235,6 @@ exprToType (Bit e i) =
exprToType _ = Nothing
-- checks where a type is sufficiently resolved to be substituted
-- TODO: If a type parameter contains an expression, that expression should be
-- substituted into the new module, or created as a new parameter.
isSimpleType :: Type -> Bool
isSimpleType typ =
(not $ typeHasQueries typ) &&

View File

@ -2,11 +2,6 @@
- Author: Zachary Snow <zach@zachjs.com>
-
- Conversion for the `type` operator
-
- TODO: This conversion only supports the most basic expressions so far. We can
- add support for range and bit accesses, struct fields, and perhaps even
- arithmetic operations. Bits and pieces of similar logic exist in other
- conversion.
-}
module Convert.TypeOf (convert) where