Home | History | Annotate | Download | only in Parse

Lines Matching refs:Fixit

1358 /// provide a fixit moving them to the right place.
1722 // We can offer a fixit if it's valid to mark this function as _Noreturn
1724 bool Fixit = !DS.setFunctionSpecNoreturn(Loc, PrevSpec, DiagID);
1726 Fixit &= Tok.isOneOf(tok::semi, tok::l_brace, tok::kw_try);
1729 << (Fixit ? FixItHint::CreateRemoval(Loc) : FixItHint())
1730 << (Fixit ? FixItHint::CreateInsertion(D.getLocStart(), "_Noreturn ")
1991 // If a '==' or '+=' is found, suggest a fixit to '='.