Home | History | Annotate | Download | only in ast

Lines Matching refs:clause

157 void CallPrinter::VisitCaseClause(CaseClause* clause) {
158 if (!clause->is_default()) {
159 Find(clause->label());
161 FindStatements(clause->statements());
614 void PrettyPrinter::VisitCaseClause(CaseClause* clause) {
615 if (clause->is_default()) {
619 Visit(clause->label());
622 PrintStatements(clause->statements());
623 if (clause->statements()->length() > 0)
1342 void AstPrinter::VisitCaseClause(CaseClause* clause) {
1343 if (clause->is_default()) {
1344 IndentedScope indent(this, "DEFAULT", clause->position());
1345 PrintStatements(clause->statements());
1347 IndentedScope indent(this, "CASE", clause->position());
1348 Visit(clause->label());
1349 PrintStatements(clause->statements());