unison icon indicating copy to clipboard operation
unison copied to clipboard

Weird treatment of abilities with multiple name segments in operation name

Open pchiusano opened this issue 3 years ago • 0 comments

structural ability z.Zoink where
  yay.there : Nat -> Nat
  nay : Nat -> Nat

Now view Zoink

  structural ability z.Zoink where
    there : Nat ->{z.Zoink} Nat
    nay : Nat ->{z.Zoink} Nat

What happened to yay?

It's just a pretty-printing bug it seems:

.scratch> view Zoink

  structural ability z.Zoink where
    there : Nat ->{z.Zoink} Nat
    nay : Nat ->{z.Zoink} Nat

.scratch> ls z.Zoink

  1. nay  (Nat ->{Zoink} Nat)
  2. yay/ (1 definition)

.scratch> ls 2

  1. there (Nat ->{Zoink} Nat)

.scratch> 

pchiusano avatar Jul 14 '22 16:07 pchiusano