Lines Matching refs:classes

3 …use the \@ObservedV2 decorator and \@Trace decorator to decorate classes and properties in classes.
12 …and \@Trace decorators are used to decorate classes and properties in classes so that changes to t…
19 - Instances of \@ObservedV2 decorated classes cannot be serialized using **JSON.stringify**.
131 | Allowed variable types | Member properties in classes in any of the following types: numb…
135 In classes decorated by \@ObservedV2, properties decorated by \@Trace are observable. This means th…
137 - Changes to properties decorated by \@Trace in nested classes decorated by \@ObservedV2
165 - Changes to properties decorated by \@Trace in inherited classes decorated by \@ObservedV2
191 - Changes to static properties decorated by \@Trace in classes decorated by \@ObservedV2
256 - \@ObservedV2 can decorate only classes.
266 - \@Trace cannot be used in classes that are not decorated by \@ObservedV2.
275 - \@Trace is a decorator for properties in classes and cannot be used in a struct.
380 - Instances of \@ObservedV2 decorated classes cannot be serialized using **JSON.stringify**.
388 …mework: The @Track decorator offers property-level update capability for classes, but not deep obs…
443 Properties in base or derived classes are observable only when decorated by \@Trace.
444 In the following example, classes **GrandFather**, **Father**, **Uncle**, **Son**, and **Cousin** a…
449 Create instances of the **Son** and **Cousin** classes. Clicks on **Button('change Son age')** and …