angular-cn/modules/di/src
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
..
annotations.js chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
binding.js chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
di.js feat(ElementInjector): implement ElementInjector 2014-10-27 10:16:50 -04:00
exceptions.js chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
injector.js chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
key.js chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
module.js style(di): add new lines 2014-10-12 17:06:41 -04:00
reflector.dart feat(ElementInjector): implement ElementInjector 2014-10-27 10:16:50 -04:00
reflector.es6 feat(ElementInjector): implement ElementInjector 2014-10-27 10:16:50 -04:00