(no title)
alephaleph | 2 years ago
A = "Hello "
B = "Hello "
C = A ++ "world"
D = B ++ "world"
and then you update the definition of A but not B?alephaleph | 2 years ago
A = "Hello "
B = "Hello "
C = A ++ "world"
D = B ++ "world"
and then you update the definition of A but not B?
rlmark|2 years ago
svieira|2 years ago
alephaleph|2 years ago
stewoconnor|2 years ago
In fact if you had the function:
double x = x + x
and you were to rewrite it to be:
double addend = addend + addend
Unison would say "this is the same function, no update needed" as it produces the same AST