You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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 whereslash
is inexplicably a:
characterThe text was updated successfully, but these errors were encountered: