We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sorry, In my memory there's a duplicate issue about the same problem but I can't find it out.
API, Boolean, Literal
None
export interface TrueLiteral extends PrimaryExpression { readonly kind: SyntaxKind.TrueKeyword; } export interface FalseLiteral extends PrimaryExpression { readonly kind: SyntaxKind.FalseKeyword; }
isLiteralExpression(trueLiteral) === false
isLiteralExpression(trueLiteral) === true
The text was updated successfully, but these errors were encountered:
Possibly #26075? You even commented in this issue. :-)
Sorry, something went wrong.
You even commented in this issue. :-)
Thanks! And they seems not duplicated but #40203
Successfully merging a pull request may close this issue.
Bug Report
Sorry, In my memory there's a duplicate issue about the same problem but I can't find it out.
🔎 Search Terms
API, Boolean, Literal
🕗 Version & Regression Information
⏯ Playground Link
None
💻 Code
🙁 Actual behavior
isLiteralExpression(trueLiteral) === false
🙂 Expected behavior
isLiteralExpression(trueLiteral) === true
The text was updated successfully, but these errors were encountered: