| OLD | NEW |
| 1 # 0.2.0-rc.2 | 1 # 0.2.0-rc.2 |
| 2 | 2 |
| 3 * Force multi-line comments to the next line (#241). | 3 * Force multi-line comments to the next line (#241). |
| 4 * Better splitting in metadata annotations in parameter lists (#247). | 4 * Better splitting in metadata annotations in parameter lists (#247). |
| 5 * New optimized line splitter (#360, #380). | 5 * New optimized line splitter (#360, #380). |
| 6 * Allow splitting after argument name (#368). | 6 * Allow splitting after argument name (#368). |
| 7 * Parsing a statement fails if there is unconsumed input (#372). | 7 * Parsing a statement fails if there is unconsumed input (#372). |
| 8 * Don't force `for` fully split if initializers or updaters do (#375, #377). |
| 8 * Split before `deferred` (#381). | 9 * Split before `deferred` (#381). |
| 9 * Allow splitting on `as` and `is` expressions (#384). | 10 * Allow splitting on `as` and `is` expressions (#384). |
| 10 * Support null-aware operators (`?.`, `??`, and `??=`) (#385). | 11 * Support null-aware operators (`?.`, `??`, and `??=`) (#385). |
| 11 * Allow splitting before default parameter values (#389). | 12 * Allow splitting before default parameter values (#389). |
| 12 | 13 |
| 13 # 0.2.0-rc.1 | 14 # 0.2.0-rc.1 |
| 14 | 15 |
| 15 * **BREAKING:** The `indent` argument to `new DartFormatter()` is now a number | 16 * **BREAKING:** The `indent` argument to `new DartFormatter()` is now a number |
| 16 of *spaces*, not *indentation levels*. | 17 of *spaces*, not *indentation levels*. |
| 17 | 18 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 111 |
| 111 # 0.1.2 | 112 # 0.1.2 |
| 112 | 113 |
| 113 * Move split conditional operators to the beginning of the next line. | 114 * Move split conditional operators to the beginning of the next line. |
| 114 | 115 |
| 115 # 0.1.1 | 116 # 0.1.1 |
| 116 | 117 |
| 117 * Support formatting enums (#120). | 118 * Support formatting enums (#120). |
| 118 * Handle Windows line endings in multiline strings (#126). | 119 * Handle Windows line endings in multiline strings (#126). |
| 119 * Increase nesting for conditional operators (#122). | 120 * Increase nesting for conditional operators (#122). |
| OLD | NEW |