clang-format: [JS] fix whitespace around "of" operator.
authorMartin Probst <martin@probst.io>
Wed, 5 Apr 2017 10:56:07 +0000 (10:56 +0000)
committerMartin Probst <martin@probst.io>
Wed, 5 Apr 2017 10:56:07 +0000 (10:56 +0000)
commitc4a3d081a913dc44279d9985910c0642f18bab7a
treecbb2675a4bc1a46dda46f5eea9ac03cd0814756f
parent5fbd93b21a8d22bce222833a1efad5b7bd82bdb1
clang-format: [JS] fix whitespace around "of" operator.

Summary:
Previously:
    import {of } from 'x';
    of (null);

Now:
    import {of} from 'x';
    of(null);

Reviewers: djasper

Subscribers: cfe-commits, klimek

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

llvm-svn: 299533
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTestJS.cpp