commit ca9c0e5c4e713002534cdc134c361e3d002fd551
parent b5f69126e7d99cda394ff89f95d400f449b3f09e
Author: Drew DeVault <sir@cmpwn.com>
Date: Sat, 17 Apr 2021 20:34:39 -0400
hare::unparse: remove obsolete TODO
We don't need to thoroughly test hare::unparse anyway, since it gets
generously exercised in the hare::parse test suite.
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/hare/unparse/type.ha b/hare/unparse/type.ha
@@ -334,8 +334,6 @@ fn type_test(t: ast::_type, expected: str) bool = {
};
assert(type_test(t, "nullable *int"));
- // TODO: struct_members
-
t._type = [&type_int, &type_int]: ast::tagged_type;
assert(type_test(t, "(int | int)"));