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

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

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 4 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
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 | « packages/dart_style/test/regression/0400/0478.stmt ('k') | packages/dart_style/test/regression/0400/0481.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698