Files
clang-p2996/clang/unittests/Format/FormatTestJS.cpp
Martin Probst 110ecc7002 clang-format: [JS] fix of detection.
Summary:
`of` is only a keyword when after an identifier, but not when after
an actual keyword.

Before:
    return of (a, b, c);
After:
    return of(a, b, c);

Reviewers: djasper

Subscribers: cfe-commits, klimek

Differential Revision: https://reviews.llvm.org/D43440

llvm-svn: 325489
2018-02-19 12:32:13 +00:00

75 KiB