blob: 299301d312a18386155bc082b02cfe9f4d80fb46 [file] [log] [blame]
40 columns |
>>> Before removed comma.
foo(
argument ›,
);
<<<
foo(argument‹›);
>>> After removed comma.
foo(
argument,‹
);
<<<
foo(argument‹›);
>>> Around removed comma.
foo(
argument,
›);
<<<
foo(argument›);
>>> At inserted comma.
extremelyLongFunction(reallyLongArgument ›);
<<<
extremelyLongFunction(
reallyLongArgument,
‹›);
>>> Around inserted comma.
extremelyLongFunction(reallyLongArgument )›;
<<<
extremelyLongFunction(
reallyLongArgument,
)›;
>>> Start before kept comma.
foo(argument , another);
<<<
foo(argument, another);
>>> Start after kept comma.
foo(argument , another);
<<<
foo(argument, another);
>>> End before kept comma.
foo(argument , another);
<<<
foo(argument›, another);
>>> End after kept comma.
foo(argument , another);
<<<
foo(argument, another);
>>> Selection just kept comma.
foo(argument , another);
<<<
foo(argument, ‹›another);