Searched refs:KeywordToken (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Parser/ |
D | pegen.h | 44 } KeywordToken; typedef 62 KeywordToken **keywords;
|
D | pegen.c | 636 for (KeywordToken *k = p->keywords[name_len]; k != NULL && k->type != -1; k++) { in _get_keyword_or_name_type()
|
D | parser.c | 12 static KeywordToken *reserved_keywords[] = { 13 (KeywordToken[]) {{NULL, -1}}, 14 (KeywordToken[]) {{NULL, -1}}, 15 (KeywordToken[]) { 23 (KeywordToken[]) { 32 (KeywordToken[]) { 42 (KeywordToken[]) { 51 (KeywordToken[]) { 60 (KeywordToken[]) { 64 (KeywordToken[]) {
|
/third_party/typescript_eslint/packages/experimental-utils/src/ast-utils/ |
D | predicates.ts | 213 ): node is TSESTree.KeywordToken & { value: 'await' } {
|
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | consistent-type-imports.ts | 33 ): token is TSESTree.KeywordToken & { value: 'import' } {
|
/third_party/typescript_eslint/packages/types/src/ |
D | ts-estree.ts | 76 export interface KeywordToken extends BaseToken { interface 123 | KeywordToken
|
/third_party/typescript/src/compiler/ |
D | types.ts | 1025 export interface KeywordToken<TKind extends KeywordSyntaxKind> extends Token<TKind> { interface 1028 export type AssertsKeyword = KeywordToken<SyntaxKind.AssertsKeyword>; 1029 export type AwaitKeyword = KeywordToken<SyntaxKind.AwaitKeyword>; 1037 export interface ModifierToken<TKind extends ModifierSyntaxKind> extends KeywordToken<TKind> { 1512 …<TKind extends KeywordTypeSyntaxKind = KeywordTypeSyntaxKind> extends KeywordToken<TKind>, TypeNod… 6916 createToken<TKind extends KeywordSyntaxKind>(token: TKind): KeywordToken<TKind>;
|
/third_party/typescript/tests/baselines/reference/api/ |
D | typescript.d.ts | 601 export interface KeywordToken<TKind extends KeywordSyntaxKind> extends Token<TKind> { interface 603 export type AssertsKeyword = KeywordToken<SyntaxKind.AssertsKeyword>; 604 export type AwaitKeyword = KeywordToken<SyntaxKind.AwaitKeyword>; 609 export interface ModifierToken<TKind extends ModifierSyntaxKind> extends KeywordToken<TKind> { 859 …<TKind extends KeywordTypeSyntaxKind = KeywordTypeSyntaxKind> extends KeywordToken<TKind>, TypeNod… 3298 createToken<TKind extends KeywordSyntaxKind>(token: TKind): KeywordToken<TKind>;
|
D | tsserverlibrary.d.ts | 601 export interface KeywordToken<TKind extends KeywordSyntaxKind> extends Token<TKind> { interface 603 export type AssertsKeyword = KeywordToken<SyntaxKind.AssertsKeyword>; 604 export type AwaitKeyword = KeywordToken<SyntaxKind.AwaitKeyword>; 609 export interface ModifierToken<TKind extends ModifierSyntaxKind> extends KeywordToken<TKind> { 859 …<TKind extends KeywordTypeSyntaxKind = KeywordTypeSyntaxKind> extends KeywordToken<TKind>, TypeNod… 3298 createToken<TKind extends KeywordSyntaxKind>(token: TKind): KeywordToken<TKind>;
|
/third_party/typescript/lib/ |
D | typescriptServices.d.ts | 592 export interface KeywordToken<TKind extends KeywordSyntaxKind> extends Token<TKind> { interface 594 export type AssertsKeyword = KeywordToken<SyntaxKind.AssertsKeyword>; 595 export type AwaitKeyword = KeywordToken<SyntaxKind.AwaitKeyword>; 600 export interface ModifierToken<TKind extends ModifierSyntaxKind> extends KeywordToken<TKind> { 850 …<TKind extends KeywordTypeSyntaxKind = KeywordTypeSyntaxKind> extends KeywordToken<TKind>, TypeNod… 3222 createToken<TKind extends KeywordSyntaxKind>(token: TKind): KeywordToken<TKind>;
|
D | typescript.d.ts | 592 export interface KeywordToken<TKind extends KeywordSyntaxKind> extends Token<TKind> { interface 594 export type AssertsKeyword = KeywordToken<SyntaxKind.AssertsKeyword>; 595 export type AwaitKeyword = KeywordToken<SyntaxKind.AwaitKeyword>; 600 export interface ModifierToken<TKind extends ModifierSyntaxKind> extends KeywordToken<TKind> { 850 …<TKind extends KeywordTypeSyntaxKind = KeywordTypeSyntaxKind> extends KeywordToken<TKind>, TypeNod… 3222 createToken<TKind extends KeywordSyntaxKind>(token: TKind): KeywordToken<TKind>;
|
D | tsserverlibrary.d.ts | 592 export interface KeywordToken<TKind extends KeywordSyntaxKind> extends Token<TKind> { interface 594 export type AssertsKeyword = KeywordToken<SyntaxKind.AssertsKeyword>; 595 export type AwaitKeyword = KeywordToken<SyntaxKind.AwaitKeyword>; 600 export interface ModifierToken<TKind extends ModifierSyntaxKind> extends KeywordToken<TKind> { 850 …<TKind extends KeywordTypeSyntaxKind = KeywordTypeSyntaxKind> extends KeywordToken<TKind>, TypeNod… 3222 createToken<TKind extends KeywordSyntaxKind>(token: TKind): KeywordToken<TKind>;
|
/third_party/typescript/src/compiler/factory/ |
D | nodeFactory.ts | 937 function createToken<TKind extends KeywordSyntaxKind>(token: TKind): KeywordToken<TKind>;
|