-
Notifications
You must be signed in to change notification settings - Fork 12.5k
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
Extract types from object literals instead of using the type checker. #60540
base: main
Are you sure you want to change the base?
Extract types from object literals instead of using the type checker. #60540
Conversation
This PR doesn't have any linked issues. Please open an issue that references this PR. From there we can discuss and prioritise. |
const symbolType = getTypeOfSymbol(symbol); | ||
if (widen) { | ||
type = instantiateType(getWidenedType(symbolType), context.mapper); | ||
} | ||
else { | ||
type = symbol && !(symbol.flags & (SymbolFlags.TypeLiteral | SymbolFlags.Signature)) | ||
? instantiateType(getWidenedLiteralType(symbolType), context.mapper) | ||
: errorType; | ||
} |
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.
Seems like this could be just:
const symbolType = getTypeOfSymbol(symbol); | |
if (widen) { | |
type = instantiateType(getWidenedType(symbolType), context.mapper); | |
} | |
else { | |
type = symbol && !(symbol.flags & (SymbolFlags.TypeLiteral | SymbolFlags.Signature)) | |
? instantiateType(getWidenedLiteralType(symbolType), context.mapper) | |
: errorType; | |
} | |
type = widen || (symbol && !(symbol.flags & (SymbolFlags.TypeLiteral | SymbolFlags.Signature))) | |
? instantiateType(getWidenedLiteralType(getTypeOfSymbol(symbol)), context.mapper) | |
: errorType; |
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.
(the original code with one more expression)
This PR brings TS emit closer to what an external tool could emit without type information by extracting object type directly from their source object literal where possible.