Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: test/regression/0400/0480.unit

Issue 1581253004: Regression test. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698