Closed lucacasonato closed 1 year ago
There is a cross cutting concern with module declarations:
module source {} import source x from "url"
Here it is ambiguous whether this is:
module source {} import source; x; from; "url";
or
import source x from "url";
We should disambiguate by banning newlines after <phase> in the static syntax.
<phase>
Thanks @hax for reporting!
@waldemarhorwat You may be interested in this issue too.
There is a cross cutting concern with module declarations:
Here it is ambiguous whether this is:
or
We should disambiguate by banning newlines after
<phase>
in the static syntax.Thanks @hax for reporting!