prettier-plugin-java 0.8.2 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +204 -0
- package/README.md +1 -1
- package/package.json +6 -5
- package/src/options.js +7 -3
- package/src/printers/blocks-and-statements.js +61 -13
- package/src/printers/classes.js +27 -26
- package/src/printers/expressions.js +9 -14
- package/src/printers/lexical-structure.js +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
|
|
2
|
+
Copyright 2018-2021 the original author or authors from the JHipster project
|
|
3
|
+
|
|
4
|
+
Apache License
|
|
5
|
+
Version 2.0, January 2004
|
|
6
|
+
http://www.apache.org/licenses/
|
|
7
|
+
|
|
8
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
9
|
+
|
|
10
|
+
1. Definitions.
|
|
11
|
+
|
|
12
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
13
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
14
|
+
|
|
15
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
16
|
+
the copyright owner that is granting the License.
|
|
17
|
+
|
|
18
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
19
|
+
other entities that control, are controlled by, or are under common
|
|
20
|
+
control with that entity. For the purposes of this definition,
|
|
21
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
22
|
+
direction or management of such entity, whether by contract or
|
|
23
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
24
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
25
|
+
|
|
26
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
27
|
+
exercising permissions granted by this License.
|
|
28
|
+
|
|
29
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
30
|
+
including but not limited to software source code, documentation
|
|
31
|
+
source, and configuration files.
|
|
32
|
+
|
|
33
|
+
"Object" form shall mean any form resulting from mechanical
|
|
34
|
+
transformation or translation of a Source form, including but
|
|
35
|
+
not limited to compiled object code, generated documentation,
|
|
36
|
+
and conversions to other media types.
|
|
37
|
+
|
|
38
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
39
|
+
Object form, made available under the License, as indicated by a
|
|
40
|
+
copyright notice that is included in or attached to the work
|
|
41
|
+
(an example is provided in the Appendix below).
|
|
42
|
+
|
|
43
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
44
|
+
form, that is based on (or derived from) the Work and for which the
|
|
45
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
46
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
47
|
+
of this License, Derivative Works shall not include works that remain
|
|
48
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
49
|
+
the Work and Derivative Works thereof.
|
|
50
|
+
|
|
51
|
+
"Contribution" shall mean any work of authorship, including
|
|
52
|
+
the original version of the Work and any modifications or additions
|
|
53
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
54
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
55
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
56
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
57
|
+
means any form of electronic, verbal, or written communication sent
|
|
58
|
+
to the Licensor or its representatives, including but not limited to
|
|
59
|
+
communication on electronic mailing lists, source code control systems,
|
|
60
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
61
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
62
|
+
excluding communication that is conspicuously marked or otherwise
|
|
63
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
64
|
+
|
|
65
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
66
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
67
|
+
subsequently incorporated within the Work.
|
|
68
|
+
|
|
69
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
70
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
71
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
72
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
73
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
74
|
+
Work and such Derivative Works in Source or Object form.
|
|
75
|
+
|
|
76
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
77
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
78
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
79
|
+
(except as stated in this section) patent license to make, have made,
|
|
80
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
81
|
+
where such license applies only to those patent claims licensable
|
|
82
|
+
by such Contributor that are necessarily infringed by their
|
|
83
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
84
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
85
|
+
institute patent litigation against any entity (including a
|
|
86
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
87
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
88
|
+
or contributory patent infringement, then any patent licenses
|
|
89
|
+
granted to You under this License for that Work shall terminate
|
|
90
|
+
as of the date such litigation is filed.
|
|
91
|
+
|
|
92
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
93
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
94
|
+
modifications, and in Source or Object form, provided that You
|
|
95
|
+
meet the following conditions:
|
|
96
|
+
|
|
97
|
+
(a) You must give any other recipients of the Work or
|
|
98
|
+
Derivative Works a copy of this License; and
|
|
99
|
+
|
|
100
|
+
(b) You must cause any modified files to carry prominent notices
|
|
101
|
+
stating that You changed the files; and
|
|
102
|
+
|
|
103
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
104
|
+
that You distribute, all copyright, patent, trademark, and
|
|
105
|
+
attribution notices from the Source form of the Work,
|
|
106
|
+
excluding those notices that do not pertain to any part of
|
|
107
|
+
the Derivative Works; and
|
|
108
|
+
|
|
109
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
110
|
+
distribution, then any Derivative Works that You distribute must
|
|
111
|
+
include a readable copy of the attribution notices contained
|
|
112
|
+
within such NOTICE file, excluding those notices that do not
|
|
113
|
+
pertain to any part of the Derivative Works, in at least one
|
|
114
|
+
of the following places: within a NOTICE text file distributed
|
|
115
|
+
as part of the Derivative Works; within the Source form or
|
|
116
|
+
documentation, if provided along with the Derivative Works; or,
|
|
117
|
+
within a display generated by the Derivative Works, if and
|
|
118
|
+
wherever such third-party notices normally appear. The contents
|
|
119
|
+
of the NOTICE file are for informational purposes only and
|
|
120
|
+
do not modify the License. You may add Your own attribution
|
|
121
|
+
notices within Derivative Works that You distribute, alongside
|
|
122
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
123
|
+
that such additional attribution notices cannot be construed
|
|
124
|
+
as modifying the License.
|
|
125
|
+
|
|
126
|
+
You may add Your own copyright statement to Your modifications and
|
|
127
|
+
may provide additional or different license terms and conditions
|
|
128
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
129
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
130
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
131
|
+
the conditions stated in this License.
|
|
132
|
+
|
|
133
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
134
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
135
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
136
|
+
this License, without any additional terms or conditions.
|
|
137
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
138
|
+
the terms of any separate license agreement you may have executed
|
|
139
|
+
with Licensor regarding such Contributions.
|
|
140
|
+
|
|
141
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
142
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
143
|
+
except as required for reasonable and customary use in describing the
|
|
144
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
145
|
+
|
|
146
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
147
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
148
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
149
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
150
|
+
implied, including, without limitation, any warranties or conditions
|
|
151
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
152
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
153
|
+
appropriateness of using or redistributing the Work and assume any
|
|
154
|
+
risks associated with Your exercise of permissions under this License.
|
|
155
|
+
|
|
156
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
157
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
158
|
+
unless required by applicable law (such as deliberate and grossly
|
|
159
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
160
|
+
liable to You for damages, including any direct, indirect, special,
|
|
161
|
+
incidental, or consequential damages of any character arising as a
|
|
162
|
+
result of this License or out of the use or inability to use the
|
|
163
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
164
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
165
|
+
other commercial damages or losses), even if such Contributor
|
|
166
|
+
has been advised of the possibility of such damages.
|
|
167
|
+
|
|
168
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
169
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
170
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
171
|
+
or other liability obligations and/or rights consistent with this
|
|
172
|
+
License. However, in accepting such obligations, You may act only
|
|
173
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
174
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
175
|
+
defend, and hold each Contributor harmless for any liability
|
|
176
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
177
|
+
of your accepting any such warranty or additional liability.
|
|
178
|
+
|
|
179
|
+
END OF TERMS AND CONDITIONS
|
|
180
|
+
|
|
181
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
182
|
+
|
|
183
|
+
To apply the Apache License to your work, attach the following
|
|
184
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
185
|
+
replaced with your own identifying information. (Don't include
|
|
186
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
187
|
+
comment syntax for the file format. We also recommend that a
|
|
188
|
+
file or class name and description of purpose be included on the
|
|
189
|
+
same "printed page" as the copyright notice for easier
|
|
190
|
+
identification within third-party archives.
|
|
191
|
+
|
|
192
|
+
Copyright [yyyy] [name of copyright owner]
|
|
193
|
+
|
|
194
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
195
|
+
you may not use this file except in compliance with the License.
|
|
196
|
+
You may obtain a copy of the License at
|
|
197
|
+
|
|
198
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
199
|
+
|
|
200
|
+
Unless required by applicable law or agreed to in writing, software
|
|
201
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
202
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
203
|
+
See the License for the specific language governing permissions and
|
|
204
|
+
limitations under the License.
|
package/README.md
CHANGED
|
@@ -121,7 +121,7 @@ We added a custom option ```entrypoint``` in order to run prettier on code snipp
|
|
|
121
121
|
|
|
122
122
|
### Usage
|
|
123
123
|
```prettier --write MyJava.java --entrypoint compilationUnit``` \
|
|
124
|
-
[Here](https://github.com/jhipster/prettier-java/blob/
|
|
124
|
+
[Here](https://github.com/jhipster/prettier-java/blob/main/packages/prettier-plugin-java/src/options.js) is the exhaustive list of all entrypoints.
|
|
125
125
|
|
|
126
126
|
### Example
|
|
127
127
|
MyJavaCode.java content:
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prettier-plugin-java",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Prettier Java Plugin",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"repository": "https://github.com/jhipster/prettier-java",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"java-parser": "0.
|
|
10
|
-
"lodash": "4.17.
|
|
11
|
-
"prettier": "2.
|
|
9
|
+
"java-parser": "1.0.2",
|
|
10
|
+
"lodash": "4.17.21",
|
|
11
|
+
"prettier": "2.2.1"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"test": "npm-run-all test:unit test:e2e-core",
|
|
@@ -19,5 +19,6 @@
|
|
|
19
19
|
"test:e2e-jhipster2": "node scripts/clone-samples e2e-jhipster2 && mocha \"test/repository-test/jhipster-2-test.js\"",
|
|
20
20
|
"test:all": "npm-run-all test test:e2e-jhipster1 test:e2e-jhipster2",
|
|
21
21
|
"clone-samples": "node scripts/clone-samples.js"
|
|
22
|
-
}
|
|
22
|
+
},
|
|
23
|
+
"gitHead": "d4dbac80d37d361f314205956547becfafca685f"
|
|
23
24
|
}
|
package/src/options.js
CHANGED
|
@@ -25,9 +25,11 @@ module.exports = {
|
|
|
25
25
|
{ value: "assertStatement" },
|
|
26
26
|
{ value: "switchStatement" },
|
|
27
27
|
{ value: "switchBlock" },
|
|
28
|
-
{ value: "
|
|
28
|
+
{ value: "switchBlockStatementGroup" },
|
|
29
29
|
{ value: "switchLabel" },
|
|
30
|
-
{ value: "
|
|
30
|
+
{ value: "switchRule" },
|
|
31
|
+
{ value: "switchRuleLabel" },
|
|
32
|
+
{ value: "caseConstant" },
|
|
31
33
|
{ value: "whileStatement" },
|
|
32
34
|
{ value: "doStatement" },
|
|
33
35
|
{ value: "forStatement" },
|
|
@@ -52,9 +54,11 @@ module.exports = {
|
|
|
52
54
|
{ value: "resourceList" },
|
|
53
55
|
{ value: "resource" },
|
|
54
56
|
{ value: "resourceInit" },
|
|
57
|
+
{ value: "yieldStatement" },
|
|
55
58
|
{ value: "variableAccess" },
|
|
56
59
|
{ value: "isBasicForStatement" },
|
|
57
60
|
{ value: "isLocalVariableDeclaration" },
|
|
61
|
+
{ value: "isClassicSwitchLabel" },
|
|
58
62
|
{ value: "classDeclaration" },
|
|
59
63
|
{ value: "normalClassDeclaration" },
|
|
60
64
|
{ value: "classModifier" },
|
|
@@ -74,6 +78,7 @@ module.exports = {
|
|
|
74
78
|
{ value: "variableInitializer" },
|
|
75
79
|
{ value: "unannType" },
|
|
76
80
|
{ value: "unannPrimitiveType" },
|
|
81
|
+
{ value: "unannPrimitiveTypeWithOptionalDimsSuffix" },
|
|
77
82
|
{ value: "unannReferenceType" },
|
|
78
83
|
{ value: "unannClassOrInterfaceType" },
|
|
79
84
|
{ value: "unannClassType" },
|
|
@@ -113,7 +118,6 @@ module.exports = {
|
|
|
113
118
|
{ value: "isClassDeclaration" },
|
|
114
119
|
{ value: "identifyClassBodyDeclarationType" },
|
|
115
120
|
{ value: "isDims" },
|
|
116
|
-
{ value: "constantExpression" },
|
|
117
121
|
{ value: "expression" },
|
|
118
122
|
{ value: "lambdaExpression" },
|
|
119
123
|
{ value: "lambdaParameters" },
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
const { line, softline, hardline } = require("prettier").doc.builders;
|
|
4
|
-
const { group, indent, concat, join } = require("./prettier-builder");
|
|
4
|
+
const { group, indent, dedent, concat, join } = require("./prettier-builder");
|
|
5
5
|
const { printTokenWithComments } = require("./comments/format-comments");
|
|
6
6
|
const {
|
|
7
7
|
hasLeadingLineComments,
|
|
@@ -195,7 +195,10 @@ class BlocksAndStatementPrettierVisitor {
|
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
switchBlock(ctx) {
|
|
198
|
-
const switchCases =
|
|
198
|
+
const switchCases =
|
|
199
|
+
ctx.switchBlockStatementGroup !== undefined
|
|
200
|
+
? this.mapVisit(ctx.switchBlockStatementGroup)
|
|
201
|
+
: this.mapVisit(ctx.switchRule);
|
|
199
202
|
|
|
200
203
|
return putIntoBraces(
|
|
201
204
|
rejectAndJoin(hardline, switchCases),
|
|
@@ -205,27 +208,63 @@ class BlocksAndStatementPrettierVisitor {
|
|
|
205
208
|
);
|
|
206
209
|
}
|
|
207
210
|
|
|
208
|
-
|
|
209
|
-
const
|
|
211
|
+
switchBlockStatementGroup(ctx) {
|
|
212
|
+
const switchLabels = this.mapVisit(ctx.switchLabel);
|
|
213
|
+
|
|
214
|
+
const labels = [];
|
|
215
|
+
for (let i = 0; i < switchLabels.length; i++) {
|
|
216
|
+
labels.push(concat([switchLabels[i], ctx.Colon[i]]));
|
|
217
|
+
}
|
|
218
|
+
|
|
210
219
|
const blockStatements = this.visit(ctx.blockStatements);
|
|
211
220
|
|
|
212
|
-
return indent(
|
|
221
|
+
return indent(
|
|
222
|
+
rejectAndJoin(hardline, [
|
|
223
|
+
dedent(rejectAndJoin(hardline, labels)),
|
|
224
|
+
blockStatements
|
|
225
|
+
])
|
|
226
|
+
);
|
|
213
227
|
}
|
|
214
228
|
|
|
215
229
|
switchLabel(ctx) {
|
|
216
230
|
if (ctx.Case) {
|
|
217
|
-
const
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
231
|
+
const caseConstants = this.mapVisit(ctx.caseConstant);
|
|
232
|
+
|
|
233
|
+
const commas = ctx.Comma
|
|
234
|
+
? ctx.Comma.map(elt => {
|
|
235
|
+
return concat([elt, line]);
|
|
236
|
+
})
|
|
237
|
+
: [];
|
|
238
|
+
|
|
239
|
+
return group(
|
|
240
|
+
indent(
|
|
241
|
+
rejectAndConcat([
|
|
242
|
+
concat([ctx.Case[0], " "]),
|
|
243
|
+
rejectAndJoinSeps(commas, caseConstants)
|
|
244
|
+
])
|
|
245
|
+
)
|
|
246
|
+
);
|
|
223
247
|
}
|
|
224
248
|
|
|
225
|
-
return concat([ctx.Default[0]
|
|
249
|
+
return concat([ctx.Default[0]]);
|
|
226
250
|
}
|
|
227
251
|
|
|
228
|
-
|
|
252
|
+
switchRule(ctx) {
|
|
253
|
+
const switchLabel = this.visit(ctx.switchLabel);
|
|
254
|
+
|
|
255
|
+
let caseInstruction;
|
|
256
|
+
if (ctx.throwStatement !== undefined) {
|
|
257
|
+
caseInstruction = this.visit(ctx.throwStatement);
|
|
258
|
+
} else if (ctx.block !== undefined) {
|
|
259
|
+
caseInstruction = this.visit(ctx.block);
|
|
260
|
+
} else {
|
|
261
|
+
caseInstruction = concat([this.visit(ctx.expression), ctx.Semicolon[0]]);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
return join(" ", [switchLabel, ctx.Arrow[0], caseInstruction]);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
caseConstant(ctx) {
|
|
229
268
|
return this.visitSingle(ctx);
|
|
230
269
|
}
|
|
231
270
|
|
|
@@ -522,6 +561,11 @@ class BlocksAndStatementPrettierVisitor {
|
|
|
522
561
|
]);
|
|
523
562
|
}
|
|
524
563
|
|
|
564
|
+
yieldStatement(ctx) {
|
|
565
|
+
const expression = this.visit(ctx.expression);
|
|
566
|
+
return join(" ", [ctx.Yield[0], concat([expression, ctx.Semicolon[0]])]);
|
|
567
|
+
}
|
|
568
|
+
|
|
525
569
|
variableAccess(ctx) {
|
|
526
570
|
return this.visitSingle(ctx);
|
|
527
571
|
}
|
|
@@ -533,6 +577,10 @@ class BlocksAndStatementPrettierVisitor {
|
|
|
533
577
|
isLocalVariableDeclaration() {
|
|
534
578
|
return "isLocalVariableDeclaration";
|
|
535
579
|
}
|
|
580
|
+
|
|
581
|
+
isClassicSwitchLabel() {
|
|
582
|
+
return "isClassicSwitchLabel";
|
|
583
|
+
}
|
|
536
584
|
}
|
|
537
585
|
|
|
538
586
|
module.exports = {
|
package/src/printers/classes.js
CHANGED
|
@@ -43,7 +43,7 @@ class ClassesPrettierVisitor {
|
|
|
43
43
|
const optionalTypeParams = this.visit(ctx.typeParameters);
|
|
44
44
|
const optionalSuperClasses = this.visit(ctx.superclass);
|
|
45
45
|
const optionalSuperInterfaces = this.visit(ctx.superinterfaces);
|
|
46
|
-
const body = this.visit(ctx.classBody);
|
|
46
|
+
const body = this.visit(ctx.classBody, { isNormalClassDeclaration: true });
|
|
47
47
|
|
|
48
48
|
let superClassesPart = "";
|
|
49
49
|
if (optionalSuperClasses) {
|
|
@@ -113,7 +113,7 @@ class ClassesPrettierVisitor {
|
|
|
113
113
|
return group(rejectAndJoinSeps(commas, interfaceType));
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
classBody(ctx) {
|
|
116
|
+
classBody(ctx, param) {
|
|
117
117
|
let content = "";
|
|
118
118
|
if (ctx.classBodyDeclaration !== undefined) {
|
|
119
119
|
const classBodyDeclsVisited = reject(
|
|
@@ -126,15 +126,24 @@ class ClassesPrettierVisitor {
|
|
|
126
126
|
|
|
127
127
|
content = rejectAndJoinSeps(separators, classBodyDeclsVisited);
|
|
128
128
|
|
|
129
|
+
// edge case when we have SemiColons
|
|
130
|
+
let shouldHardline = false;
|
|
131
|
+
ctx.classBodyDeclaration.forEach(elt => {
|
|
132
|
+
if (
|
|
133
|
+
(elt.children.classMemberDeclaration &&
|
|
134
|
+
!elt.children.classMemberDeclaration[0].children.Semicolon) ||
|
|
135
|
+
elt.children.constructorDeclaration
|
|
136
|
+
) {
|
|
137
|
+
shouldHardline = true;
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
|
|
129
141
|
if (
|
|
130
|
-
|
|
131
|
-
ctx.classBodyDeclaration[0].children.
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
ctx.classBodyDeclaration[0].children.classMemberDeclaration[0]
|
|
136
|
-
.children.Semicolon !== undefined)
|
|
137
|
-
)
|
|
142
|
+
(ctx.classBodyDeclaration[0].children.classMemberDeclaration ||
|
|
143
|
+
ctx.classBodyDeclaration[0].children.constructorDeclaration) &&
|
|
144
|
+
shouldHardline &&
|
|
145
|
+
param &&
|
|
146
|
+
param.isNormalClassDeclaration
|
|
138
147
|
) {
|
|
139
148
|
content = rejectAndConcat([hardline, content]);
|
|
140
149
|
}
|
|
@@ -300,10 +309,10 @@ class ClassesPrettierVisitor {
|
|
|
300
309
|
}
|
|
301
310
|
|
|
302
311
|
unannType(ctx) {
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
}
|
|
312
|
+
return this.visitSingle(ctx);
|
|
313
|
+
}
|
|
306
314
|
|
|
315
|
+
unannPrimitiveTypeWithOptionalDimsSuffix(ctx) {
|
|
307
316
|
const unannPrimitiveType = this.visit(ctx.unannPrimitiveType);
|
|
308
317
|
const dims = this.visit(ctx.dims);
|
|
309
318
|
|
|
@@ -345,6 +354,7 @@ class ClassesPrettierVisitor {
|
|
|
345
354
|
currentSegment = [];
|
|
346
355
|
} else if (token.name === "annotation") {
|
|
347
356
|
currentSegment.push(this.visit([token]));
|
|
357
|
+
currentSegment.push(" ");
|
|
348
358
|
} else {
|
|
349
359
|
currentSegment.push(token);
|
|
350
360
|
if (
|
|
@@ -402,11 +412,6 @@ class ClassesPrettierVisitor {
|
|
|
402
412
|
const declarator = this.visit(ctx.methodDeclarator);
|
|
403
413
|
const throws = this.visit(ctx.throws);
|
|
404
414
|
|
|
405
|
-
let throwsPart = "";
|
|
406
|
-
if (throws) {
|
|
407
|
-
throwsPart = indent(rejectAndConcat([softline, throws]));
|
|
408
|
-
}
|
|
409
|
-
|
|
410
415
|
return group(
|
|
411
416
|
concat([
|
|
412
417
|
rejectAndJoin(" ", [
|
|
@@ -414,7 +419,7 @@ class ClassesPrettierVisitor {
|
|
|
414
419
|
rejectAndJoin(line, annotations),
|
|
415
420
|
result,
|
|
416
421
|
declarator,
|
|
417
|
-
|
|
422
|
+
throws
|
|
418
423
|
])
|
|
419
424
|
])
|
|
420
425
|
);
|
|
@@ -514,7 +519,8 @@ class ClassesPrettierVisitor {
|
|
|
514
519
|
|
|
515
520
|
throws(ctx) {
|
|
516
521
|
const exceptionTypeList = this.visit(ctx.exceptionTypeList);
|
|
517
|
-
|
|
522
|
+
const throwsDeclaration = join(" ", [ctx.Throws[0], exceptionTypeList]);
|
|
523
|
+
return group(indent(rejectAndConcat([softline, throwsDeclaration])));
|
|
518
524
|
}
|
|
519
525
|
|
|
520
526
|
exceptionTypeList(ctx) {
|
|
@@ -554,11 +560,6 @@ class ClassesPrettierVisitor {
|
|
|
554
560
|
const throws = this.visit(ctx.throws);
|
|
555
561
|
const constructorBody = this.visit(ctx.constructorBody);
|
|
556
562
|
|
|
557
|
-
let throwsPart = "";
|
|
558
|
-
if (throws) {
|
|
559
|
-
throwsPart = indent(rejectAndConcat([softline, throws]));
|
|
560
|
-
}
|
|
561
|
-
|
|
562
563
|
return rejectAndJoin(" ", [
|
|
563
564
|
group(
|
|
564
565
|
rejectAndJoin(hardline, [
|
|
@@ -566,7 +567,7 @@ class ClassesPrettierVisitor {
|
|
|
566
567
|
rejectAndJoin(" ", [
|
|
567
568
|
join(" ", otherModifiers),
|
|
568
569
|
constructorDeclarator,
|
|
569
|
-
|
|
570
|
+
throws
|
|
570
571
|
])
|
|
571
572
|
])
|
|
572
573
|
),
|
|
@@ -22,10 +22,6 @@ const {
|
|
|
22
22
|
} = require("./printer-utils");
|
|
23
23
|
|
|
24
24
|
class ExpressionsPrettierVisitor {
|
|
25
|
-
constantExpression(ctx) {
|
|
26
|
-
return this.visitSingle(ctx);
|
|
27
|
-
}
|
|
28
|
-
|
|
29
25
|
expression(ctx, params) {
|
|
30
26
|
return this.visitSingle(ctx, params);
|
|
31
27
|
}
|
|
@@ -171,7 +167,7 @@ class ExpressionsPrettierVisitor {
|
|
|
171
167
|
groupsOfOperator,
|
|
172
168
|
sortedBinaryOperators
|
|
173
169
|
} = separateTokensIntoGroups(ctx);
|
|
174
|
-
const
|
|
170
|
+
const segmentsSplitByBinaryOperator = [];
|
|
175
171
|
let currentSegment = [];
|
|
176
172
|
|
|
177
173
|
if (groupsOfOperator.length === 1 && groupsOfOperator[0].length === 0) {
|
|
@@ -216,7 +212,7 @@ class ExpressionsPrettierVisitor {
|
|
|
216
212
|
);
|
|
217
213
|
}
|
|
218
214
|
}
|
|
219
|
-
|
|
215
|
+
segmentsSplitByBinaryOperator.push(
|
|
220
216
|
group(rejectAndJoin(" ", currentSegment))
|
|
221
217
|
);
|
|
222
218
|
});
|
|
@@ -231,7 +227,7 @@ class ExpressionsPrettierVisitor {
|
|
|
231
227
|
group(
|
|
232
228
|
rejectAndJoinSeps(
|
|
233
229
|
sortedBinaryOperators.map(elt => concat([" ", elt, line])),
|
|
234
|
-
|
|
230
|
+
segmentsSplitByBinaryOperator
|
|
235
231
|
)
|
|
236
232
|
)
|
|
237
233
|
])
|
|
@@ -245,7 +241,7 @@ class ExpressionsPrettierVisitor {
|
|
|
245
241
|
return group(
|
|
246
242
|
rejectAndJoinSeps(
|
|
247
243
|
sortedBinaryOperators.map(elt => concat([" ", elt, line])),
|
|
248
|
-
|
|
244
|
+
segmentsSplitByBinaryOperator
|
|
249
245
|
)
|
|
250
246
|
);
|
|
251
247
|
}
|
|
@@ -345,7 +341,10 @@ class ExpressionsPrettierVisitor {
|
|
|
345
341
|
suffixes.push(this.visit(ctx.primarySuffix[i]));
|
|
346
342
|
}
|
|
347
343
|
|
|
348
|
-
if (
|
|
344
|
+
if (
|
|
345
|
+
countMethodInvocation === 1 &&
|
|
346
|
+
ctx.primaryPrefix[0].children.newExpression === undefined
|
|
347
|
+
) {
|
|
349
348
|
return group(
|
|
350
349
|
rejectAndConcat([
|
|
351
350
|
primaryPrefix,
|
|
@@ -362,7 +361,7 @@ class ExpressionsPrettierVisitor {
|
|
|
362
361
|
}
|
|
363
362
|
|
|
364
363
|
primaryPrefix(ctx, params) {
|
|
365
|
-
if (ctx.This || ctx.Void
|
|
364
|
+
if (ctx.This || ctx.Void) {
|
|
366
365
|
return printTokenWithComments(this.getSingle(ctx));
|
|
367
366
|
}
|
|
368
367
|
|
|
@@ -587,10 +586,6 @@ class ExpressionsPrettierVisitor {
|
|
|
587
586
|
}
|
|
588
587
|
|
|
589
588
|
methodInvocationSuffix(ctx, params) {
|
|
590
|
-
if (ctx.argumentList === undefined) {
|
|
591
|
-
return rejectAndConcat([ctx.LBrace[0], ctx.RBrace[0]]);
|
|
592
|
-
}
|
|
593
|
-
|
|
594
589
|
const argumentList = this.visit(ctx.argumentList);
|
|
595
590
|
if (params && params.shouldDedent) {
|
|
596
591
|
return dedent(
|
|
@@ -3,7 +3,7 @@ const { printTokenWithComments } = require("./comments/format-comments");
|
|
|
3
3
|
|
|
4
4
|
class LexicalStructurePrettierVisitor {
|
|
5
5
|
literal(ctx) {
|
|
6
|
-
if (ctx.CharLiteral || ctx.StringLiteral || ctx.Null) {
|
|
6
|
+
if (ctx.CharLiteral || ctx.TextBlock || ctx.StringLiteral || ctx.Null) {
|
|
7
7
|
return printTokenWithComments(this.getSingle(ctx));
|
|
8
8
|
}
|
|
9
9
|
return this.visitSingle(ctx);
|