Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
feat(typescript-estree):typeof
private identifiers#4832
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
b4c9ac9
97d5c79
7b1c198
547d172
cb305c0
eb2bcc5
c390c67
04efb6c
ee04ac6
af7b0f3
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
import type { AST_NODE_TYPES } from '../../ast-node-types'; | ||
import type { BaseNode } from '../../base/BaseNode'; | ||
import type { Identifier } from '../../expression/Identifier/spec'; | ||
import type { PrivateIdentifier } from '../../special/PrivateIdentifier/spec'; | ||
import type { EntityName } from '../../unions/EntityName'; | ||
export interface TSQualifiedName extends BaseNode { | ||
type: AST_NODE_TYPES.TSQualifiedName; | ||
left: EntityName; | ||
right: Identifier | PrivateIdentifier; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. NGL - I do hate this a little bit because the only place that It's probably not worth going to the effort of creating a separate AST node just for private member expressions within a type query. | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// THIS CODE WAS AUTOMATICALLY GENERATED | ||
// DO NOT EDIT THIS CODE BY HAND | ||
// RUN THE FOLLOWING COMMAND FROM THE WORKSPACE ROOT TO REGENERATE: | ||
// npx nx generate-lib @typescript-eslint/scope-manager | ||
import { ImplicitLibVariableOptions } from '../variable'; | ||
import { es2020_intl } from './es2020.intl'; | ||
import { TYPE } from './base-config'; | ||
export const es2020_date = { | ||
...es2020_intl, | ||
Date: TYPE, | ||
} as Record<string, ImplicitLibVariableOptions>; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// THIS CODE WAS AUTOMATICALLY GENERATED | ||
// DO NOT EDIT THIS CODE BY HAND | ||
// RUN THE FOLLOWING COMMAND FROM THE WORKSPACE ROOT TO REGENERATE: | ||
// npx nx generate-lib @typescript-eslint/scope-manager | ||
import { ImplicitLibVariableOptions } from '../variable'; | ||
import { es2020_intl } from './es2020.intl'; | ||
import { TYPE } from './base-config'; | ||
export const es2020_number = { | ||
...es2020_intl, | ||
Number: TYPE, | ||
} as Record<string, ImplicitLibVariableOptions>; |
Uh oh!
There was an error while loading.Please reload this page.