Home | History | Annotate | Download | only in Parse

Lines Matching refs:Fixit

1330 /// provide a fixit moving them to the right place.
1656 // We can offer a fixit if it's valid to mark this function as _Noreturn
1658 bool Fixit = !DS.setFunctionSpecNoreturn(Loc, PrevSpec, DiagID);
1660 Fixit &= Tok.is(tok::semi) || Tok.is(tok::l_brace) || Tok.is(tok::kw_try);
1663 << (Fixit ? FixItHint::CreateRemoval(Loc) : FixItHint())
1664 << (Fixit ? FixItHint::CreateInsertion(D.getLocStart(), "_Noreturn ")
1925 // If a '==' or '+=' is found, suggest a fixit to '='.