Lines Matching refs:myId
124 …@Link myId: number; // @Link cannot be used in @ComponentV2. Otherwise, an error is repo…
136 Text(`${this.myId}`)
141 this.myId++;
151 …@State @Watch('idChange') myId: number = 1; // @Watch cannot be used in @ComponentV2. Otherwise, …
154 console.info(`id changed ${this.myId}`);
166 myId: this.myId
232 @Trace myId: number; // Observable.
237 this.myId = id || 0;
264 …Text(`info1 id: ${this.info1.myId}`) // myId is decorated by @Trace and is observable.
268 this.info1.myId += 1;
272 Text(`info2 id: ${this.info2.myId}`)
276 this.info2.myId += 1;
280 …Text(`messageInfo id: ${this.messageInfo.myId}`) // A crash occurs during runtime when the class i…
284 this.messageInfo.myId += 1;
306 …@Track myId: number; // Not observable. Only associated update caused by other property chan…
310 this.myId = id || 0;
336 Text(`info1 id: ${this.info1.myId}`)
340 this.info1.myId += 1;
344 Text(`info2 id: ${this.info2.myId}`)
348 this.info2.myId += 1;
353 Text(`messageInfo id: ${this.messageInfo.myId}`)
357 this.messageInfo.myId += 1;
472 myId: number;
475 constructor(myId?: number, name?: string) {
476 this.myId = myId || 0;
508 Text ('info id:${this.info.myId}') // Display info:myId.
512 this.info.myId++;
565 myId: number;
568 constructor(myId?: number, name?: string) {
569 this.myId = myId || 0;
599 Text ('info id:${this.info.myId}') // Display info:myId.
603 this.info.myId++;
657 myId: number;
660 constructor(myId?: number, name?: string) {
661 this.myId = myId || 0;
691 Text(`info id:${this.info.myId}`) // Display info:myId.
695 this.info.myId++;
749 myId: number;
752 constructor(myId?: number, name?: string) {
753 this.myId = myId || 0;
783 Text(`info id:${this.info.myId}`) // Display info:myId.
787 this.info.myId++;
853 myId: number;
856 constructor(myId?: number, name?: string) {
857 this.myId = myId || 0;
888 …Text ('ObjectLink info info.myId:${this.info.myId}') // After @ObjectLink disassembles the level t…
891 this.info.myId++;
910 …Text(`ObjectLink MessageInfo info.myId:${this.messageInfo.info.myId}`) // After @ObjectLink disas…
913 this.messageInfo.info.myId++;
959 @Trace myId: number;
962 constructor(myId?: number, name?: string) {
963 this.myId = myId || 0;
1025 …Text(`messageInfoNested myId:${this.messageInfoNested.messageInfo.info.myId}`) // Decorated by @Tr…
1028 this.messageInfoNested.messageInfo.info.myId++;