We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a2acb9 commit 4bb246bCopy full SHA for 4bb246b
builder/formatter.jule
@@ -291,7 +291,10 @@ impl formatter {
291
if t.Constraint != nil {
292
self.write(": ")
293
for (j, mut c) in t.Constraint.Mask {
294
- self.formatType(c)
+ if c.Deep {
295
+ self.write("~")
296
+ }
297
+ self.formatType(c.Type)
298
if len(t.Constraint.Mask)-j > 1 {
299
self.write(" | ")
300
}
0 commit comments