Skip to content
This repository has been archived by the owner on Sep 16, 2022. It is now read-only.

Commit

Permalink
Moves note on exports to section on exports
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 161542597
  • Loading branch information
leonsenft authored and matanlurey committed Jul 11, 2017
1 parent afcf143 commit 314951e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions angular/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ class Comp {}
* _Limitations_:
* Only top-level fields that are `const` (not `final`) can be exported.

* As a note, `exports` are considered to always be _pure_ functions (or
symbols) and are not change detected the same way that instance methods or
fields on the component class are.

* Added `@deferred` as the first "compile-time" directive (it has no specific
runtime code nor is it listed in a `directives: [ ... ]` list. Implements
[#406](https://github.com/dart-lang/angular/issues/406).
Expand All @@ -50,10 +54,6 @@ import 'expensive_comp.dart' show ExpensiveComp;
class MyComp {}
```

As a note, `exports` are considered to always be _pure_ functions (or symbols)
and are not change detected the same way that instance methods or fields on the
component class are.

* Added preliminary support for component inheritance. Components now inherit
inputs, outputs, host bindings, host listeners, queries, and view queries
transitively from their immediate supertype if it's a component or directive.
Expand Down

0 comments on commit 314951e

Please sign in to comment.