Home
last modified time | relevance | path

Searched refs:GotoStatement (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/torque/
Dast.h54 V(GotoStatement) \
485 struct GotoStatement : Statement { struct
486 DEFINE_AST_NODE_LEAF_BOILERPLATE(GotoStatement)
487 GotoStatement(SourcePosition pos, std::string label, in GotoStatement() function
Ddeclaration-visitor.h132 void Visit(GotoStatement* expr) {} in Visit()
Dimplementation-visitor.h126 const Type* Visit(GotoStatement* stmt);
Dtorque-parser.cc628 MakeNode<GotoStatement>(std::move(label), std::move(arguments)); in MakeGotoStatement()
Dimplementation-visitor.cc576 const Type* ImplementationVisitor::Visit(GotoStatement* stmt) { in Visit()