Skip to content

Commit

Permalink
Remove commented out trace lines
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcadman committed Nov 30, 2023
1 parent ab4376c commit 5b6a31c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,6 @@ addDependency' pkg me resolvedDependency = do
currentPackage :: (Members '[Files, State ResolverState, Reader ResolverEnv] r) => Sem r PackageInfo
currentPackage = do
curRoot <- asks (^. envRoot)
-- traceShowM curRoot
(^. resolverCacheItemPackage) . fromJust <$> getResolverCacheItem curRoot

-- | Returns the root of the package where the module belongs and the path to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -814,8 +814,6 @@ inferExpression' hint e = case e of

goLiteral :: LiteralLoc -> Sem r TypedExpression
goLiteral lit@(WithLoc i l) = do
-- traceM (show l)

case l of
LitNumeric v -> outHole v >> typedLitNumeric v
LitInteger {} -> do
Expand Down Expand Up @@ -850,9 +848,6 @@ inferExpression' hint e = case e of
from <- getBuiltinName i blt
ihole <- freshInstanceHole i
let ty' = fromMaybe ty hint
-- traceM (ppTrace from)
-- traceM (ppTrace ty)
-- traceM (ppTrace ty')
inferExpression' (Just ty') $
foldApplication
(ExpressionIden (IdenFunction from))
Expand Down

0 comments on commit 5b6a31c

Please sign in to comment.