| OLD | NEW |
| 1 >>> | 1 >>> |
| 2 if (x && | 2 if (x && |
| 3 y) { | 3 y) { |
| 4 print('!'); | 4 print('!'); |
| 5 } | 5 } |
| 6 <<< | 6 <<< |
| 7 if (x && y) { | 7 if (x && y) { |
| 8 print('!'); | 8 print('!'); |
| 9 } | 9 } |
| 10 >>> | 10 >>> |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 new XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX(); | 114 new XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX(); |
| 115 >>> | 115 >>> |
| 116 main() { | 116 main() { |
| 117 throw new FormatException("This is a long exception message that puts this ove
r 80 columns."); | 117 throw new FormatException("This is a long exception message that puts this ove
r 80 columns."); |
| 118 } | 118 } |
| 119 <<< | 119 <<< |
| 120 main() { | 120 main() { |
| 121 throw new FormatException( | 121 throw new FormatException( |
| 122 "This is a long exception message that puts this over 80 columns."); | 122 "This is a long exception message that puts this over 80 columns."); |
| 123 } | 123 } |
| 124 >>> |
| 125 return new Field._internal(bombCount, cols, new ReadOnlyCollection<bool>(squares
)); |
| 126 <<< |
| 127 return new Field._internal(bombCount, cols, |
| 128 new ReadOnlyCollection<bool>(squares)); |
| OLD | NEW |