Home
last modified time | relevance | path

Searched refs:TryLabelStatement (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/torque/
Dast.h55 V(TryLabelStatement)
553 struct TryLabelStatement : Statement { struct
554 DEFINE_AST_NODE_LEAF_BOILERPLATE(TryLabelStatement)
555 TryLabelStatement(SourcePosition pos, Statement* try_block, in TryLabelStatement() function
Ddeclaration-visitor.h142 void Visit(TryLabelStatement* stmt);
Dimplementation-visitor.h124 const Type* Visit(TryLabelStatement* stmt);
Dtorque-parser.cc553 current_block->statements.push_back(MakeNode<TryLabelStatement>( in MakeTypeswitchStatement()
645 MakeNode<TryLabelStatement>(try_block, std::move(label_blocks)); in MakeTryLabelStatement()
Ddeclaration-visitor.cc459 void DeclarationVisitor::Visit(TryLabelStatement* stmt) { in Visit()
Dimplementation-visitor.cc922 const Type* ImplementationVisitor::Visit(TryLabelStatement* stmt) { in Visit()