Lines Matching refs:orange
320 orange: number = 10;
330 Text("child orange: "+ this.fruit.orange.toString())
335 Button("orange+1")
337 this.fruit.orange++;
350 Text("parent orange: "+this.parentFruit.orange.toString())
363 @Trace orange: number = 10;
368 newFruit.orange = this.orange;
380 Text(this.fruit.orange.toString())
385 Button("orange+1")
387 this.fruit.orange++;
401 Text(this.parentFruit.orange.toString())
1051 @State @Watch('onOrangeChange') orange: number = 0;
1057 console.log("orange count changed to "+this.orange);
1063 Text(`orange count: ${this.orange}`)
1068 Button("add orange")
1070 this.orange++;
1084 @Local orange: number = 0;
1087 @Monitor('apple','orange')
1097 Text(`orange count: ${this.orange}`)
1102 Button("add orange")
1104 this.orange++;