This revision was automatically updated to reflect the committed changes.
Closed by commit rL360042: [CodeComplete] Add a trailing semicolons to some
pattern completions (authored by ibiryukov, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Changed prior to
ilya-biryukov updated this revision to Diff 198254.
ilya-biryukov added a comment.
- Add tests for 'continue;' and 'break;' completions
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61589/new/
https://reviews.llvm.org/D61589
Files:
clang/lib/Sem
ilya-biryukov created this revision.
ilya-biryukov added a reviewer: gribozavr.
Herald added a project: clang.
Where semicolon is required in any case. Here's a list of completions
that now have a semicolon:
- namespace = ;
- using namespace ;
- using ::;
- continue;
- break;
- goto ;
- return;