Lines Matching refs:Score
1022 …cannot be re-rendered. In the following example, when the static method **Score.changeScore1** or …
1027 class Score {
1033 static changeScore1(param1:Score) {
1041 @State score: Score = new Score(1);
1057 @Prop score: Score;
1059 changeScore2(param2:Score) {
1070 Score.changeScore1(this.score);
1087 class Score {
1093 static changeScore1(score:Score) {
1101 @State score: Score = new Score(1);
1117 @Prop score: Score;
1119 changeScore2(score:Score) {
1131 Score.changeScore1(score1);