angular-cn/modules
Misko Hevery 044625a098 chore: Make field declarations explicit
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’;
  }
}
```
2014-11-24 16:35:39 -08:00
..
benchmarks chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
change_detection chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
core chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
di chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
examples chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
facade chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
rtts_assert feat(deps): update Traceur 0.0.74 2014-11-07 10:29:48 -08:00
test_lib chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00