Searched refs:CatchClause (Results 1 – 16 of 16) sorted by relevance
/arkcompiler/ets_frontend/es2panda/ir/base/ |
D | catchClause.cpp | 33 void CatchClause::Iterate(const NodeTraverser &cb) const in Iterate() 42 void CatchClause::Dump(ir::AstDumper *dumper) const in Dump() 47 void CatchClause::Compile(compiler::PandaGen *pg) const in Compile() 60 checker::Type *CatchClause::Check(checker::Checker *checker) const in Check() 87 void CatchClause::UpdateSelf(const NodeUpdater &cb, binder::Binder *binder) in UpdateSelf()
|
D | catchClause.h | 39 class CatchClause : public Statement { 41 explicit CatchClause(binder::CatchScope *scope, Expression *param, BlockStatement *body) in CatchClause() function
|
/arkcompiler/ets_frontend/es2panda/ir/statements/ |
D | tryStatement.h | 35 class CatchClause; variable 39 … explicit TryStatement(BlockStatement *block, CatchClause *catchClause, BlockStatement *finalizer) in TryStatement() 54 CatchClause *GetCatchClause() const in GetCatchClause() 73 CatchClause *catchClause_;
|
/arkcompiler/ets_frontend/es2panda/test/parser/js/ |
D | test-try-statement-expected.txt | 21 "type": "CatchClause", 103 "type": "CatchClause", 214 "type": "CatchClause", 283 "type": "CatchClause",
|
D | test-labelled-statement-expected.txt | 446 "type": "CatchClause",
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | astutils.ts | 29 } else if (decl.parent.kind === ts.SyntaxKind.CatchClause) {
|
D | recorder.ts | 156 case ts.SyntaxKind.CatchClause: { 348 if (parent.parent.kind === ts.SyntaxKind.CatchClause) {
|
D | compiler.ts | 494 decl.parent.kind != ts.SyntaxKind.CatchClause) {
|
D | syntaxChecker.ts | 78 …yntaxKind.Block) && (node.parent != undefined && node.parent.kind === ts.SyntaxKind.CatchClause)) {
|
/arkcompiler/ets_frontend/arkguard/src/utils/ |
D | ScopeAnalyzer.ts | 30 CatchClause, 461 case SyntaxKind.CatchClause: 462 analyzeCatchClause(node as CatchClause); 567 function analyzeCatchClause(node: CatchClause): void {
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | binder.h | 28 class CatchClause; variable 209 void BuildCatchClause(ir::CatchClause *catchClauseStmt);
|
D | binder.cpp | 615 void Binder::BuildCatchClause(ir::CatchClause *catchClauseStmt) in BuildCatchClause()
|
/arkcompiler/ets_frontend/es2panda/ir/ |
D | astNodeMapping.h | 28 _(CATCH_CLAUSE, CatchClause) \
|
/arkcompiler/ets_frontend/es2panda/parser/ |
D | parserImpl.h | 113 class CatchClause; variable 527 ir::CatchClause *ParseCatchClause();
|
D | statementParser.cpp | 1836 ir::CatchClause *ParserImpl::ParseCatchClause() in ParseCatchClause() 1859 auto *catchClause = AllocNode<ir::CatchClause>(catchScope, param, catchBlock); in ParseCatchClause() 1884 ir::CatchClause *catchClause = nullptr; in ParseTryStatement()
|
/arkcompiler/ets_frontend/legacy_bin/api8/src/ |
D | index.js | 2 …Clause",l[l.HeritageClause=289]="HeritageClause",l[l.CatchClause=290]="CatchClause",l[l.PropertyAs…
|