Home
last modified time | relevance | path

Searched refs:CatchClause (Results 1 – 25 of 32) sorted by relevance

12

/third_party/typescript/src/compiler/transformers/
Des2019.ts20 case SyntaxKind.CatchClause:
21 return visitCatchClause(node as CatchClause);
27 function visitCatchClause(node: CatchClause): CatchClause {
Des2018.ts173 case SyntaxKind.CatchClause:
174 return visitCatchClause(node as CatchClause);
508 function visitCatchClause(node: CatchClause) {
Des2017.ts165 case SyntaxKind.CatchClause:
186 function visitCatchClauseInAsyncBody(node: CatchClause) {
Des2015.ts439 case SyntaxKind.CatchClause:
440 return visitCatchClause(<CatchClause>node);
3486 function visitCatchClause(node: CatchClause): CatchClause {
3488 let updated: CatchClause;
/third_party/typescript/src/services/
Dbreakpoints.ts101 case SyntaxKind.CatchClause:
102 return spanInBlock((<CatchClause>node).block);
595 case SyntaxKind.CatchClause:
DoutliningElementsCollector.ts169 case SyntaxKind.CatchClause:
Dutilities.ts44 case SyntaxKind.CatchClause:
562 case SyntaxKind.CatchClause:
563 return isCompletedNode((<CatchClause>n).block, sourceFile);
/third_party/node/deps/acorn/acorn-walk/
DCHANGELOG.md149 The walker now allows defining handlers for `CatchClause` nodes.
/third_party/typescript/src/compiler/transformers/module/
Dsystem.ts1203 case SyntaxKind.CatchClause:
1204 return visitCatchClause(<CatchClause>node);
1434 function visitCatchClause(node: CatchClause): CatchClause {
/third_party/typescript/src/compiler/
DvisitorPublic.ts1072 case SyntaxKind.CatchClause:
1073 return factory.updateCatchClause(<CatchClause>node,
1074 … nodeVisitor((<CatchClause>node).variableDeclaration, visitor, isVariableDeclaration),
1075 nodeVisitor((<CatchClause>node).block, visitor, isBlock));
Dtypes.ts342 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: …
Dbinder.ts1868 case SyntaxKind.CatchClause:
2281 function checkStrictModeCatchClause(node: CatchClause) {
2608 case SyntaxKind.CatchClause:
2609 return checkStrictModeCatchClause(<CatchClause>node);
Demitter.ts1568 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/
DnodeTests.ts657 export function isCatchClause(node: Node): node is CatchClause {
658 return node.kind === SyntaxKind.CatchClause;
/third_party/typescript/lib/
Dtypescript.d.ts397 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 …]
DtypescriptServices.d.ts397 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 …]
Dtsserverlibrary.d.ts397 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/
Dtypescript.d.ts397 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 …]
Dtsserverlibrary.d.ts397 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/
Drules.ts621 case SyntaxKind.CatchClause:
650 case SyntaxKind.CatchClause:
Dformatting.ts213 case SyntaxKind.CatchClause:
214 return rangeContainsRange((<CatchClause>parent).block.statements, node);
/third_party/node/deps/acorn/acorn-walk/dist/
Dwalk.js249 base.CatchClause = function (node, st, c) {
Dwalk.mjs243 base.CatchClause = function (node, st, c) { class
/third_party/typescript/src/linter/
DTypeScriptLinter.ts166 …[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/
DInstructionCombining.cpp2873 Constant *CatchClause = LI.getClause(i); in visitLandingPadInst() local
2874 Constant *TypeInfo = CatchClause->stripPointerCasts(); in visitLandingPadInst()
2880 NewClauses.push_back(CatchClause); in visitLandingPadInst()

12