OLD | NEW |
| 1 ## 0.12.0 |
| 2 * Introduce `@optionalTypeArgs` annotation for classes whose type arguments are
to be treated as optional. |
| 3 |
1 ## 0.11.0 | 4 ## 0.11.0 |
2 * Added new `Required` constructor with a means to specify a reason to explain w
hy a parameter is required. | 5 * Added new `Required` constructor with a means to specify a reason to explain w
hy a parameter is required. |
3 | 6 |
4 ## 0.10.0 | 7 ## 0.10.0 |
5 * Introduce `@factory` annotation for methods that must either be abstract or | 8 * Introduce `@factory` annotation for methods that must either be abstract or |
6 must return a newly allocated object. | 9 must return a newly allocated object. |
7 * Introduce `@literal` annotation that indicates that any invocation of a | 10 * Introduce `@literal` annotation that indicates that any invocation of a |
8 constructor must use the keyword `const` unless one or more of the | 11 constructor must use the keyword `const` unless one or more of the |
9 arguments to the constructor is not a compile-time constant. | 12 arguments to the constructor is not a compile-time constant. |
10 | 13 |
11 ## 0.9.0 | 14 ## 0.9.0 |
12 * Introduce `@protected` annotation for members that must only be called from | 15 * Introduce `@protected` annotation for members that must only be called from |
13 instance members of subclasses. | 16 instance members of subclasses. |
14 * Introduce `@required` annotation for optional parameters that should be treate
d | 17 * Introduce `@required` annotation for optional parameters that should be treate
d |
15 as required. | 18 as required. |
16 * Introduce `@mustCallSuper` annotation for methods that must be invoked by all | 19 * Introduce `@mustCallSuper` annotation for methods that must be invoked by all |
17 overriding methods. | 20 overriding methods. |
OLD | NEW |