Lines Matching refs:Map
13 The state management framework adds proxies to original objects of the Class, Date, Map, Set, and A…
21 … is added to the class objects decorated by @Observed and the Class, Date, Map, Set, and Array dec…
22 - In state management V2, a proxy is added to Date, Map, Set, and Array decorated by \@Trace, \@Loc…
91 …variables decorators such as \@State or \@Prop are used to decorate Class, Map, Set, Date, and Arr…
109 …@State sampleMap: Map<number, string> = new Map([[0, "a"], [1, "b"], [3, "c"]]); // A proxy is cre…
136 let globalSampleMap: Map<number, string> = new Map([[0, "a"], [1, "b"], [3, "c"]]); // Not proxied.
145 @State sampleMap: Map<number, string> = globalSampleMap; // A proxy is created for the Map type.
170 A proxy is added to the Map, Set, Date, and Array decorated by \@Trace, \@Local, or other state var…
179 let globalSampleMap: Map<number, string> = new Map([[0, "a"], [1, "b"], [3, "c"]]); // Not proxied.
187 @Local sampleMap: Map<number, string> = globalSampleMap; // A proxy is created for the Map type.
210 let globalSampleMap: Map<number, string> = new Map([[0, "a"], [1, "b"], [3, "c"]]); // Not proxied.
218 @Local sampleMap: Map<number, string> = globalSampleMap; // A proxy is created for the Map type.