| OLD | NEW |
| (Empty) | |
| 1 >>> |
| 2 class XXXElement extends PolymerElement { |
| 3 void attached() { |
| 4 if (condition.containsKey('userUpdatingTest')) { |
| 5 conditionType = TriggerValueType.userUpdatingConditionType; |
| 6 if (condition['userUpdatingTest'].containsKey('userIsRole')) { |
| 7 userUpdatingCriteriaSelectIndex = userValueTypeIndexFromName(condition[ |
| 8 'userUpdatingTest']['userIsRole']['user'].toString()) + |
| 9 1; |
| 10 } |
| 11 } |
| 12 } |
| 13 } |
| 14 <<< |
| 15 class XXXElement extends PolymerElement { |
| 16 void attached() { |
| 17 if (condition.containsKey('userUpdatingTest')) { |
| 18 conditionType = TriggerValueType.userUpdatingConditionType; |
| 19 if (condition['userUpdatingTest'].containsKey('userIsRole')) { |
| 20 userUpdatingCriteriaSelectIndex = userValueTypeIndexFromName( |
| 21 condition['userUpdatingTest']['userIsRole']['user'] |
| 22 .toString()) + |
| 23 1; |
| 24 } |
| 25 } |
| 26 } |
| 27 } |
| OLD | NEW |