Order of execution PropertyChanges

2019-09-11 01:05发布

问题:

Is there any documented order of execution of PropertyChanges instances?

For example, if there is a State like,

State {
    name: "LOADED"
    PropertyChanges { target: elem1; width: 10 }
    PropertyChanges { target: elem2; width: 10 }
}

is there any specific order which elements width will be setted first?