044625a098
This used to be valid code: ``` class Foo { constructor() { this.bar = ‘string’; } } ``` This will now fail since ‘bar’ is not explicitly defined as a field. We now have to write: ``` class Foo { bar:string; // << REQUIRED constructor() { this.bar = ‘string’; } } ``` |
||
---|---|---|
.. | ||
parser | ||
change_detector_spec.js | ||
collection_changes_spec.js | ||
map_changes_spec.js | ||
record_range_spec.js |