nblockchain/fantomless

Replace `foo[]` with `array<foo>`

knocte opened this issue · 1 comments

Test1:

let foo (bar: string[]) =
    ()

should become:

let foo (bar: array<string>) =
    ()

Test2:

let foo = []

should become (same):

let foo = []

(should not change)

Fixed in 8265139