[PATCH] D123450: [clang-format] Parse Verilog if statements
sstwcw via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat Apr 9 03:47:24 PDT 2022
sstwcw created this revision.
sstwcw added reviewers: MyDeveloperDay, HazardyKnusperkeks, curdeius, owenpan.
Herald added a subscriber: mgorny.
Herald added a project: All.
sstwcw requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
This patch mainly handles treating `begin` as block openers.
While and for statements will be handled in another patch.
We added an alias option in FormatToken to treat a token as another
token. This way when some language uses an alternative symbol like
backtick for hash we can continue using tok::hash in the code. For
keywords like `begin`, left braces aren't block openers in if
expressions while they are in structs and enums. That means we can't
simply treat `begin` and the left brace the same way.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D123450
Files:
clang/docs/ClangFormat.rst
clang/include/clang/Format/Format.h
clang/lib/Format/Format.cpp
clang/lib/Format/FormatToken.cpp
clang/lib/Format/FormatToken.h
clang/lib/Format/QualifierAlignmentFixer.cpp
clang/lib/Format/TokenAnnotator.cpp
clang/lib/Format/UnwrappedLineFormatter.cpp
clang/lib/Format/UnwrappedLineParser.cpp
clang/tools/clang-format/ClangFormat.cpp
clang/unittests/Format/CMakeLists.txt
clang/unittests/Format/FormatTestUtils.h
clang/unittests/Format/FormatTestVerilog.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D123450.421710.patch
Type: text/x-patch
Size: 39312 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220409/f4d374e4/attachment-0001.bin>
More information about the cfe-commits
mailing list