Lines Matching refs:created
77 …stance. When this class instance is created, a proxy is added to the instance. However, objects th…
91 …y, proxies are added. If the object is already a proxy object, the proxy will not be created again.
106 …@State observedObject: ObservedClass = observedClass; // Proxy will not be created repeatedly for …
107 @State nonObservedObject: NonObservedClass = nonObservedClass; // A proxy is created.
108 @State numberList: number[] = [1, 2, 3]; // A proxy is created for the Array type.
109 …<number, string> = new Map([[0, "a"], [1, "b"], [3, "c"]]); // A proxy is created for the Map type.
110 @State sampleSet: Set<number> = new Set([0, 1, 2, 3, 4]); // A proxy is created for the Set type.
111 @State sampleDate: Date = new Date(); // A proxy is created for the Date type.
142 …@State observedObject: ObservedClass = observedClass; // Proxy will not be created repeatedly for …
143 @State nonObservedObject: NonObservedClass = nonObservedClass; // A proxy is created.
144 @State numberList: number[] = globalNumberList; // A proxy is created for the Array type.
145 @State sampleMap: Map<number, string> = globalSampleMap; // A proxy is created for the Map type.
146 @State sampleSet: Set<number> = globalSampleSet; // A proxy is created for the Set type.
147 @State sampleDate: Date = globalSampleDate; // A proxy is created for the Date type.
186 @Local numberList: number[] = globalNumberList; // A proxy is created for the Array type.
187 @Local sampleMap: Map<number, string> = globalSampleMap; // A proxy is created for the Map type.
188 @Local sampleSet: Set<number> = globalSampleSet; // A proxy is created for the Set type.
189 @Local sampleDate: Date = globalSampleDate; // A proxy is created for the Date type.
217 @Local numberList: number[] = globalNumberList; // A proxy is created for the Array type.
218 @Local sampleMap: Map<number, string> = globalSampleMap; // A proxy is created for the Map type.
219 @Local sampleSet: Set<number> = globalSampleSet; // A proxy is created for the Set type.
220 @Local sampleDate: Date = globalSampleDate; // A proxy is created for the Date type.