Expectation: Aliased imports should work within the fence
Actual: Aliased imports aren't consistent
import IO from "IO"
#- import { delimiter as slash } from "node:path" -#
main = () => {
IO.pTrace(">>>", #- slash -#)
joined = #- "x" + slash + "a" -#
IO.pTrace(">->", joined)
}
☝🏼 This prints:
Additionally in a different repo I have a more complicated use case where slash is inexplicably a : character
Expectation: Aliased imports should work within the fence
Actual: Aliased imports aren't consistent
☝🏼 This prints:
Additionally in a different repo I have a more complicated use case whereslashis inexplicably a:character