File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ class BuildSpec {
12
12
// Build targets
13
13
// TODO (jwren) can we get rid of "name"
14
14
final String name;
15
+
15
16
// TODO (jwren) these two can be consilidated
16
17
17
18
final String version;
@@ -100,8 +101,14 @@ class BuildSpec {
100
101
101
102
@override
102
103
String toString () {
103
- return 'BuildSpec($ideaProduct $ideaVersion $dartPluginVersion $sinceBuild '
104
- '$untilBuild version: "$release ")' ;
104
+ return 'BuildSpec('
105
+ 'ideaProduct: $ideaProduct , '
106
+ 'ideaVersion: $ideaVersion , '
107
+ 'baseVersion: $baseVersion , '
108
+ 'dartPluginVersion: $dartPluginVersion , '
109
+ 'since: $sinceBuild , '
110
+ 'until: $untilBuild , '
111
+ 'version: "$release ")' ;
105
112
}
106
113
107
114
Future <BuildSpec > initChangeLog () async {
@@ -131,9 +138,11 @@ class BuildSpec {
131
138
class SyntheticBuildSpec extends BuildSpec {
132
139
late final BuildSpec alternate;
133
140
134
- SyntheticBuildSpec .fromJson (super .json,
135
- super .releaseNum,
136
- List <BuildSpec > specs,) : super .fromJson () {
141
+ SyntheticBuildSpec .fromJson (
142
+ super .json,
143
+ super .releaseNum,
144
+ List <BuildSpec > specs,
145
+ ) : super .fromJson () {
137
146
try {
138
147
// 'isUnitTestTarget' should always be in the spec for the latest IntelliJ (not AS).
139
148
alternate = specs.firstWhere ((s) => s.isUnitTestTarget);
You can’t perform that action at this time.
0 commit comments