/third_party/typescript/src/compiler/transformers/ |
D | es2019.ts | 20 case SyntaxKind.CatchClause: 21 return visitCatchClause(node as CatchClause); 27 function visitCatchClause(node: CatchClause): CatchClause {
|
D | es2018.ts | 173 case SyntaxKind.CatchClause: 174 return visitCatchClause(node as CatchClause); 508 function visitCatchClause(node: CatchClause) {
|
D | es2017.ts | 165 case SyntaxKind.CatchClause: 186 function visitCatchClauseInAsyncBody(node: CatchClause) {
|
D | es2015.ts | 439 case SyntaxKind.CatchClause: 440 return visitCatchClause(<CatchClause>node); 3486 function visitCatchClause(node: CatchClause): CatchClause { 3488 let updated: CatchClause;
|
/third_party/typescript/src/services/ |
D | breakpoints.ts | 101 case SyntaxKind.CatchClause: 102 return spanInBlock((<CatchClause>node).block); 595 case SyntaxKind.CatchClause:
|
D | outliningElementsCollector.ts | 169 case SyntaxKind.CatchClause:
|
D | utilities.ts | 44 case SyntaxKind.CatchClause: 562 case SyntaxKind.CatchClause: 563 return isCompletedNode((<CatchClause>n).block, sourceFile);
|
/third_party/node/deps/acorn/acorn-walk/ |
D | CHANGELOG.md | 149 The walker now allows defining handlers for `CatchClause` nodes.
|
/third_party/typescript/src/compiler/transformers/module/ |
D | system.ts | 1203 case SyntaxKind.CatchClause: 1204 return visitCatchClause(<CatchClause>node); 1434 function visitCatchClause(node: CatchClause): CatchClause {
|
/third_party/typescript/src/compiler/ |
D | visitorPublic.ts | 1072 case SyntaxKind.CatchClause: 1073 return factory.updateCatchClause(<CatchClause>node, 1074 … nodeVisitor((<CatchClause>node).variableDeclaration, visitor, isVariableDeclaration), 1075 nodeVisitor((<CatchClause>node).block, visitor, isBlock));
|
D | types.ts | 342 CatchClause, enumerator 1263 readonly parent: VariableDeclarationList | CatchClause; 2792 readonly catchClause?: CatchClause; 2796 export interface CatchClause extends Node { 2797 readonly kind: SyntaxKind.CatchClause; 7178 …createTryStatement(tryBlock: Block, catchClause: CatchClause | undefined, finallyBlock: Block | un… 7179 …updateTryStatement(node: TryStatement, tryBlock: Block, catchClause: CatchClause | undefined, fina… 7342 …chClause(variableDeclaration: string | VariableDeclaration | undefined, block: Block): CatchClause; 7343 …updateCatchClause(node: CatchClause, variableDeclaration: VariableDeclaration | undefined, block: …
|
D | binder.ts | 1868 case SyntaxKind.CatchClause: 2281 function checkStrictModeCatchClause(node: CatchClause) { 2608 case SyntaxKind.CatchClause: 2609 return checkStrictModeCatchClause(<CatchClause>node);
|
D | emitter.ts | 1568 case SyntaxKind.CatchClause: 1569 return emitCatchClause(<CatchClause>node); 3522 function emitCatchClause(node: CatchClause) { 4754 case SyntaxKind.CatchClause: 4755 generateNames((<CatchClause>node).variableDeclaration); 4756 generateNames((<CatchClause>node).block);
|
/third_party/typescript/src/compiler/factory/ |
D | nodeTests.ts | 657 export function isCatchClause(node: Node): node is CatchClause { 658 return node.kind === SyntaxKind.CatchClause;
|
/third_party/typescript/lib/ |
D | typescript.d.ts | 397 CatchClause = 290, enumerator 697 readonly parent: VariableDeclarationList | CatchClause; 1514 readonly catchClause?: CatchClause; 1517 export interface CatchClause extends Node { interface 1518 readonly kind: SyntaxKind.CatchClause; 3429 …createTryStatement(tryBlock: Block, catchClause: CatchClause | undefined, finallyBlock: Block | un… 3430 …updateTryStatement(node: TryStatement, tryBlock: Block, catchClause: CatchClause | undefined, fina… 3572 …chClause(variableDeclaration: string | VariableDeclaration | undefined, block: Block): CatchClause; 3573 …updateCatchClause(node: CatchClause, variableDeclaration: VariableDeclaration | undefined, block: … 4526 function isCatchClause(node: Node): node is CatchClause; [all …]
|
D | typescriptServices.d.ts | 397 CatchClause = 290, enumerator 697 readonly parent: VariableDeclarationList | CatchClause; 1514 readonly catchClause?: CatchClause; 1517 export interface CatchClause extends Node { interface 1518 readonly kind: SyntaxKind.CatchClause; 3429 …createTryStatement(tryBlock: Block, catchClause: CatchClause | undefined, finallyBlock: Block | un… 3430 …updateTryStatement(node: TryStatement, tryBlock: Block, catchClause: CatchClause | undefined, fina… 3572 …chClause(variableDeclaration: string | VariableDeclaration | undefined, block: Block): CatchClause; 3573 …updateCatchClause(node: CatchClause, variableDeclaration: VariableDeclaration | undefined, block: … 4526 function isCatchClause(node: Node): node is CatchClause; [all …]
|
D | tsserverlibrary.d.ts | 397 CatchClause = 290, enumerator 697 readonly parent: VariableDeclarationList | CatchClause; 1514 readonly catchClause?: CatchClause; 1517 export interface CatchClause extends Node { interface 1518 readonly kind: SyntaxKind.CatchClause; 3429 …createTryStatement(tryBlock: Block, catchClause: CatchClause | undefined, finallyBlock: Block | un… 3430 …updateTryStatement(node: TryStatement, tryBlock: Block, catchClause: CatchClause | undefined, fina… 3572 …chClause(variableDeclaration: string | VariableDeclaration | undefined, block: Block): CatchClause; 3573 …updateCatchClause(node: CatchClause, variableDeclaration: VariableDeclaration | undefined, block: … 4526 function isCatchClause(node: Node): node is CatchClause; [all …]
|
/third_party/typescript/tests/baselines/reference/api/ |
D | typescript.d.ts | 397 CatchClause = 290, enumerator 708 readonly parent: VariableDeclarationList | CatchClause; 1525 readonly catchClause?: CatchClause; 1528 export interface CatchClause extends Node { interface 1529 readonly kind: SyntaxKind.CatchClause; 3545 …createTryStatement(tryBlock: Block, catchClause: CatchClause | undefined, finallyBlock: Block | un… 3546 …updateTryStatement(node: TryStatement, tryBlock: Block, catchClause: CatchClause | undefined, fina… 3688 …chClause(variableDeclaration: string | VariableDeclaration | undefined, block: Block): CatchClause; 3689 …updateCatchClause(node: CatchClause, variableDeclaration: VariableDeclaration | undefined, block: … 4757 function isCatchClause(node: Node): node is CatchClause; [all …]
|
D | tsserverlibrary.d.ts | 397 CatchClause = 290, enumerator 708 readonly parent: VariableDeclarationList | CatchClause; 1525 readonly catchClause?: CatchClause; 1528 export interface CatchClause extends Node { interface 1529 readonly kind: SyntaxKind.CatchClause; 3545 …createTryStatement(tryBlock: Block, catchClause: CatchClause | undefined, finallyBlock: Block | un… 3546 …updateTryStatement(node: TryStatement, tryBlock: Block, catchClause: CatchClause | undefined, fina… 3688 …chClause(variableDeclaration: string | VariableDeclaration | undefined, block: Block): CatchClause; 3689 …updateCatchClause(node: CatchClause, variableDeclaration: VariableDeclaration | undefined, block: … 4757 function isCatchClause(node: Node): node is CatchClause; [all …]
|
/third_party/typescript/src/services/formatting/ |
D | rules.ts | 621 case SyntaxKind.CatchClause: 650 case SyntaxKind.CatchClause:
|
D | formatting.ts | 213 case SyntaxKind.CatchClause: 214 return rangeContainsRange((<CatchClause>parent).block.statements, node);
|
/third_party/node/deps/acorn/acorn-walk/dist/ |
D | walk.js | 249 base.CatchClause = function (node, st, c) {
|
D | walk.mjs | 243 base.CatchClause = function (node, st, c) { class
|
/third_party/typescript/src/linter/ |
D | TypeScriptLinter.ts | 166 …[SyntaxKind.ClassExpression, this.handleClassExpression], [SyntaxKind.CatchClause, this.handleCatc… 1113 const tsCatch = node as CatchClause;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 2873 Constant *CatchClause = LI.getClause(i); in visitLandingPadInst() local 2874 Constant *TypeInfo = CatchClause->stripPointerCasts(); in visitLandingPadInst() 2880 NewClauses.push_back(CatchClause); in visitLandingPadInst()
|