Closed emdash closed 3 years ago
Currently foo()[3] fails to parse as an expression, while (foo())[3] and (foo()).bar works as expected, but is ugly.
foo()[3]
(foo())[3]
(foo()).bar
Folded this issue into #2
Currently
foo()[3]
fails to parse as an expression, while(foo())[3]
and(foo()).bar
works as expected, but is ugly.