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
Trying to compile this with "declaration" on causes tsc to fatally error out with a Debug Failure (I've noticed the language service hangs on this file, yet to investigate why but I assume it's the same reason), after reporting the (correct) error
SyntaxKind 190 refers to the Block kind. Looking at isDeclarationVisible, this is likely because it has an export flag, so it tries to check its parent's visibility (the block) and errors since it doesn't have a branch to handle Block.
The text was updated successfully, but these errors were encountered:
Trying to compile this with "declaration" on causes tsc to fatally error out with a Debug Failure (I've noticed the language service hangs on this file, yet to investigate why but I assume it's the same reason), after reporting the (correct) error
Specifically, we get
SyntaxKind 190 refers to the
Block
kind. Looking at isDeclarationVisible, this is likely because it has an export flag, so it tries to check its parent's visibility (the block) and errors since it doesn't have a branch to handleBlock
.The text was updated successfully, but these errors were encountered: