angular-cn/modules/@angular/core
Dzmitry Shylovich ee747f7d0c refactor(core): change abstract classes for interfaces (#12324)
BREAKING CHANGE: Because all lifecycle hooks are now interfaces
the code that uses 'extends' keyword will no longer compile.

To migrate the code follow the example below:

Before:
```
@Component()
class SomeComponent extends OnInit {}
```
After:
```
@Component()
class SomeComponent implements OnInit {}
```

we don't expect anyone to be affected by this change.

Closes #10083
2017-02-23 18:04:51 -08:00
..
src refactor(core): change abstract classes for interfaces (#12324) 2017-02-23 18:04:51 -08:00
test refactor(core): enable new animations dsl 2017-02-23 13:59:16 -08:00
testing perf: distrubute smaller bundled code and include es2015 bundle 2017-02-21 20:48:55 -08:00
.babelrc build: resolve review comments on flat modules PR and fix more bugs (#14660) 2017-02-23 16:39:44 -08:00
.babelrc-testing build: resolve review comments on flat modules PR and fix more bugs (#14660) 2017-02-23 16:39:44 -08:00
index.ts feat(platform-webworker): renderer v2 integration 2017-02-20 16:17:43 -08:00
package.json perf: distrubute smaller bundled code and include es2015 bundle 2017-02-21 20:48:55 -08:00
public_api.ts build: produce metadata bundles for @angular modules (#14509) 2017-02-16 08:15:30 -08:00
tsconfig-build.json fix(tsc-wrapped): use agreed on options names (#14630) 2017-02-22 10:57:01 -08:00
tsconfig-testing.json build: resolve review comments on flat modules PR and fix more bugs (#14660) 2017-02-23 16:39:44 -08:00