-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
check usage before declaration for decorators #50372
base: main
Are you sure you want to change the base?
Conversation
return !!findAncestor(usage, current => { | ||
if (current === declContainer) { | ||
return "quit"; | ||
} | ||
if (isFunctionLike(current)) { | ||
return true; | ||
return !getImmediatelyInvokedFunctionExpression(current); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enum is not checked properly. playground
function foo17() {
let a = (() => Enum.Yes)(); // should error
enum Enum {
No = 0,
Yes = 1,
}
}
foo17()
@typescript-bot test this |
Heya @DanielRosenwasser, I've started to run the extended test suite on this PR at 4190fb8. You can monitor the build here. |
Heya @DanielRosenwasser, I've started to run the diff-based user code test suite on this PR at 4190fb8. You can monitor the build here. Update: The results are in! |
Heya @DanielRosenwasser, I've started to run the perf test suite on this PR at 4190fb8. You can monitor the build here. Update: The results are in! |
@DanielRosenwasser Here are the results of running the user test suite comparing Everything looks good! |
Heya @DanielRosenwasser, I've run the RWC suite on this PR - assuming you're on the TS core team, you can view the resulting diff here. |
@DanielRosenwasser Here they are:
CompilerComparison Report - main..50372
System
Hosts
Scenarios
TSServerComparison Report - main..50372
System
Hosts
Scenarios
Developer Information: |
Fixes #50349