AddToChangeList static method
Implementation
static void AddToChangeList(PropertyDefinition propertyDefinition,
    List<PropertyDefinition> changeList) {
  if (!changeList.contains(propertyDefinition)) {
    changeList.add(propertyDefinition);
  }
}