Lines Matching refs:testNum
669 @Link testNum: number;
672 Text(`LinkChild testNum ${this.testNum}`)
679 @State testNum: ClassA = new ClassA(1);
683 Text(`Parent testNum ${this.testNum.c}`)
685 this.testNum.c += 1;
688 LinkChild({ testNum: this.testNum.c })
694 …testNum: number** and the initialization from the parent component **LinkChild ({testNum:this.test…
710 @Link testNum: ClassA;
713 Text(`LinkChild testNum ${this.testNum?.c}`)
715 this.testNum.c += 1;
723 @State testNum: ClassA = new ClassA(1);
727 Text(`Parent testNum ${this.testNum.c}`)
729 this.testNum.c += 1;
732 LinkChild({ testNum: this.testNum })