angular-cn/tools/transpiler/spec
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
..
a-0-subfolder chore: use es6-module-loader 2014-10-07 17:35:22 -07:00
fixtures bug(transpiler): Support optional arguments in annotations. 2014-11-10 13:47:30 -08:00
annotations_spec.js chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
arrow_functions_spec.js chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
bar.js fix(transpiler/dart): re-exporting only some bindings 2014-11-12 07:01:14 -08:00
baz.js feat(transiler/dart): re-export imported vars 2014-11-12 07:01:14 -08:00
classes_spec.js chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
cycle.js test(transpiler): add a cycle import spec 2014-10-07 17:35:22 -07:00
cycle_spec.js test(transpiler): add a cycle import spec 2014-10-07 17:35:22 -07:00
equals_spec.js refactor: simplify and make tests work in JS and Dart 2014-09-28 21:50:38 -07:00
export.js fix(transpiler/dart): re-exporting only some bindings 2014-11-12 07:01:14 -08:00
foo.js refactor: rename `js2dart` to `transpiler` 2014-09-26 17:44:42 -07:00
functions_spec.js chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00
imports_spec.js feat(transiler/dart): re-export imported vars 2014-11-12 07:01:14 -08:00
instance_of_spec.js test(transpiler): add spec for instanceof 2014-10-09 15:22:20 -07:00
lang_spec.js feat(transpiler): Transform template strings to triple quoted Dart strings 2014-11-10 16:49:51 -08:00
reexport.js feat(transiler/dart): re-export imported vars 2014-11-12 07:01:14 -08:00
types_spec.js chore: Make field declarations explicit 2014-11-24 16:35:39 -08:00