angular-cn/tools/transpiler
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
..
spec chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
src chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
gulp-traceur.js chore(gulp-traceur): better error reporting 2014-11-05 11:42:23 -08:00
index.js chore: source maps for Karma/Gulp 2014-11-05 11:19:02 -08:00
karma-traceur-preprocessor.js chore: source maps for Karma/Gulp 2014-11-05 11:19:02 -08:00