Chromium Code Reviews| Index: test/splitting/expressions.stmt |
| diff --git a/test/splitting/expressions.stmt b/test/splitting/expressions.stmt |
| index f034717ae3abe7a1812ae45ceacbf65bcb2fafc6..55640203258e3eff50a20ada94a5c9a3897475d1 100644 |
| --- a/test/splitting/expressions.stmt |
| +++ b/test/splitting/expressions.stmt |
| @@ -93,4 +93,14 @@ someFunction( |
| (identifier * |
| (verylongIdentifier * |
| verylongIdentifier) * |
| - identifier); |
| + identifier); |
| +>>> conditional operands are nested |
| +identifier ? identifier ? someParticularlyLongOperand : someParticularlyLongOperand : identifier ? someParticularlyLongOperand : someParticularlyLongOperand; |
| +<<< |
| +identifier ? |
| + identifier ? |
| + someParticularlyLongOperand : |
| + someParticularlyLongOperand : |
| + identifier ? |
| + someParticularlyLongOperand : |
| + someParticularlyLongOperand; |
|
pquitslund
2015/01/09 18:59:12
Please shoot me if you ever see me write code like
|