Replies: 2 comments
-
A second approach that factorizes the
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Implemented in #1163 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Actually, there are two ways of representing a namespace import such as
import * as X from ...
.Moreover, the current AST doesn't rule out the invalid states
import type D, * as A from ...
andimport type D, {A} from ...
.This is also slightly different from the spec.
I propose a simple change that keeps most of the current nodes and solves these issues:
Beta Was this translation helpful? Give feedback.
All reactions