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

Commit 314951e

Browse files
leonsenftmatanlurey
authored andcommitted
Moves note on exports to section on exports
PiperOrigin-RevId: 161542597
1 parent afcf143 commit 314951e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

angular/CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ class Comp {}
3232
* _Limitations_:
3333
* Only top-level fields that are `const` (not `final`) can be exported.
3434

35+
* As a note, `exports` are considered to always be _pure_ functions (or
36+
symbols) and are not change detected the same way that instance methods or
37+
fields on the component class are.
38+
3539
* Added `@deferred` as the first "compile-time" directive (it has no specific
3640
runtime code nor is it listed in a `directives: [ ... ]` list. Implements
3741
[#406](https://github.com/dart-lang/angular/issues/406).
@@ -50,10 +54,6 @@ import 'expensive_comp.dart' show ExpensiveComp;
5054
class MyComp {}
5155
```
5256

53-
As a note, `exports` are considered to always be _pure_ functions (or symbols)
54-
and are not change detected the same way that instance methods or fields on the
55-
component class are.
56-
5757
* Added preliminary support for component inheritance. Components now inherit
5858
inputs, outputs, host bindings, host listeners, queries, and view queries
5959
transitively from their immediate supertype if it's a component or directive.

0 commit comments

Comments
 (0)