Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 0.11.4+1 | |
| 2 | |
| 3 * Correctly match and print `String`s with containing characters that must be | |
|
nweiz
2015/02/06 00:23:13
"with containing" -> "containing"
kevmoo
2015/02/06 02:58:59
Done.
| |
| 4 represented as escape sequences. | |
| 5 | |
| 1 ## 0.11.4 | 6 ## 0.11.4 |
| 2 | 7 |
| 3 * Remove the type checks in the `isEmpty` and `isNotEmpty` matchers and simply | 8 * Remove the type checks in the `isEmpty` and `isNotEmpty` matchers and simply |
| 4 access the `isEmpty` respectively `isNotEmpty` fields. This allows them to | 9 access the `isEmpty` respectively `isNotEmpty` fields. This allows them to |
| 5 work with custom collections. See [Issue | 10 work with custom collections. See [Issue |
| 6 21792](https://code.google.com/p/dart/issues/detail?id=21792) and [Issue | 11 21792](https://code.google.com/p/dart/issues/detail?id=21792) and [Issue |
| 7 21562](https://code.google.com/p/dart/issues/detail?id=21562) | 12 21562](https://code.google.com/p/dart/issues/detail?id=21562) |
| 8 | 13 |
| 9 ## 0.11.3+1 | 14 ## 0.11.3+1 |
| 10 | 15 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 54 * Matchers related to bad language use have been removed. These represent code | 59 * Matchers related to bad language use have been removed. These represent code |
| 55 structure that should rarely or never be validated in tests. | 60 structure that should rarely or never be validated in tests. |
| 56 * `isAbstractClassInstantiationError` | 61 * `isAbstractClassInstantiationError` |
| 57 * `throwsAbstractClassInstantiationError` | 62 * `throwsAbstractClassInstantiationError` |
| 58 * `isFallThroughError` | 63 * `isFallThroughError` |
| 59 * `throwsFallThroughError` | 64 * `throwsFallThroughError` |
| 60 | 65 |
| 61 * Added types to a number of method arguments. | 66 * Added types to a number of method arguments. |
| 62 | 67 |
| 63 * The structure of the library and test code has been updated. | 68 * The structure of the library and test code has been updated. |
| OLD | NEW |