Home
last modified time | relevance | path

Searched refs:ForInStatement (Results 1 – 25 of 77) sorted by relevance

1234

/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/
Dno-for-in-array.test.ts39 type: AST_NODE_TYPES.ForInStatement,
53 type: AST_NODE_TYPES.ForInStatement,
68 type: AST_NODE_TYPES.ForInStatement,
83 type: AST_NODE_TYPES.ForInStatement,
98 type: AST_NODE_TYPES.ForInStatement,
/third_party/typescript/tests/baselines/reference/
DAPISample_linter.js27 case ts.SyntaxKind.ForInStatement:
88 case ts.SyntaxKind.ForInStatement:
DparserRealSource11.symbols4955 export class ForInStatement extends Statement {
4956 >ForInStatement : Symbol(ForInStatement, Decl(parserRealSource11.ts, 1683, 5))
4960 >lval : Symbol(ForInStatement.lval, Decl(parserRealSource11.ts, 1686, 21))
4962 >obj : Symbol(ForInStatement.obj, Decl(parserRealSource11.ts, 1686, 38))
4969 >this.lval : Symbol(ForInStatement.lval, Decl(parserRealSource11.ts, 1686, 21))
4970 >this : Symbol(ForInStatement, Decl(parserRealSource11.ts, 1683, 5))
4971 >lval : Symbol(ForInStatement.lval, Decl(parserRealSource11.ts, 1686, 21))
4973 >this.lval : Symbol(ForInStatement.lval, Decl(parserRealSource11.ts, 1686, 21))
4974 >this : Symbol(ForInStatement, Decl(parserRealSource11.ts, 1683, 5))
4975 >lval : Symbol(ForInStatement.lval, Decl(parserRealSource11.ts, 1686, 21))
[all …]
/third_party/typescript_eslint/packages/scope-manager/src/scope/
DForScope.ts9 TSESTree.ForInStatement | TSESTree.ForOfStatement | TSESTree.ForStatement,
/third_party/typescript/src/services/
Dbreakpoints.ts140 case SyntaxKind.ForInStatement:
142 return textSpanEndingAtNextToken(node, (<ForInStatement>node).expression);
382 if (variableDeclaration.parent.parent.kind === SyntaxKind.ForInStatement) {
479 case SyntaxKind.ForInStatement:
492 …itializerOfForLike(forLikeStatement: ForStatement | ForOfStatement | ForInStatement): TextSpan | u…
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dno-for-in-array.ts23 ForInStatement(node): void {
Dno-loop-func.ts102 case AST_NODE_TYPES.ForInStatement:
Dtypedef.ts229 case AST_NODE_TYPES.ForInStatement:
Dno-extra-parens.ts168 node: TSESTree.ForInStatement | TSESTree.ForOfStatement,
Dno-redeclare.ts292 ForInStatement: checkForBlock,
Dno-use-before-define.ts164 (node.parent.parent.type === AST_NODE_TYPES.ForInStatement ||
/third_party/typescript_eslint/packages/eslint-plugin/typings/
Deslint-rules.d.ts111 | TSESTree.ForInStatement
189 ForInStatement: RuleFunction<TSESTree.ForInStatement>;
524 node: TSESTree.ForInStatement | TSESTree.ForOfStatement,
/third_party/typescript/tests/cases/compiler/
DAPISample_linter.ts31 case ts.SyntaxKind.ForInStatement:
/third_party/typescript_eslint/packages/types/src/
Dast-node-types.ts29 ForInStatement = 'ForInStatement', enumerator
Dts-estree.ts170 | ForInStatement
385 | ForInStatement
944 export interface ForInStatement extends BaseNode { interface
945 type: AST_NODE_TYPES.ForInStatement;
/third_party/typescript_eslint/packages/experimental-utils/src/ts-eslint-scope/
DReferencer.ts68 ForInStatement(node: TSESTree.Node): void; method
/third_party/typescript_eslint/packages/scope-manager/src/referencer/
DReferencer.ts206 node: TSESTree.ForInStatement | TSESTree.ForOfStatement,
510 protected ForInStatement(node: TSESTree.ForInStatement): void { method in Referencer
/third_party/typescript_eslint/packages/typescript-estree/tests/snapshots/javascript/forIn/
Dfor-in-array.src.js.shot75 "type": "ForInStatement",
Dfor-in-object-with-body.src.js.shot75 "type": "ForInStatement",
Dfor-in-with-bare-assigment.src.js.shot110 "type": "ForInStatement",
Dfor-in-with-var.src.js.shot168 "type": "ForInStatement",
Dfor-in-destruction.src.js.shot150 "type": "ForInStatement",
/third_party/typescript_eslint/packages/experimental-utils/src/ts-eslint/
DRule.ts278 ForInStatement?: RuleFunction<TSESTree.ForInStatement>; property
/third_party/typescript_eslint/packages/typescript-estree/src/ts-estree/
Destree-to-ts-node-types.ts61 [AST_NODE_TYPES.ForInStatement]: ts.ForInStatement;
Dts-nodes.ts132 | ts.ForInStatement

1234