This revision was automatically updated to reflect the committed changes.
Closed by commit rG6bcd8d4a18fc: clang-format: [JS] test declared fields.
(authored by mprobst).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69972/new/
https://reviews.llvm.
MyDeveloperDay added a comment.
Thanks for this patch, this LGTM
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69972/new/
https://reviews.llvm.org/D69972
___
cfe-commits mailing list
cfe-commits@lists
mprobst created this revision.
mprobst added a reviewer: krasimir.
Herald added a project: clang.
TypeScript now supports declaring fields:
class Foo {
declare field: string;
}
clang-format happens to already format this fine, so this change just
adds a regression test.
Repository:
r