mirror of
https://github.com/carp-lang/Carp.git
synced 2024-11-05 04:44:12 +03:00
Don't print hidden binders.
This commit is contained in:
parent
07ac1ffd72
commit
84403988f1
@ -395,7 +395,7 @@ showBinderIndented indent (name, Binder _ (XObj (Lst [XObj (Interface t paths) _
|
||||
joinWith "\n " (map show paths) ++
|
||||
"\n" ++ replicate indent ' ' ++ "}"
|
||||
showBinderIndented indent (name, Binder meta xobj) =
|
||||
if False -- metaIsTrue meta "hidden"
|
||||
if metaIsTrue meta "hidden"
|
||||
then ""
|
||||
else replicate indent ' ' ++ name ++
|
||||
-- " (" ++ show (getPath xobj) ++ ")" ++
|
||||
|
Loading…
Reference in New Issue
Block a user