Skip to content

Commit c5c56ff

Browse files
fix: parameter comment function attribute removal (#2412)
* fix: attributes are getting printed now if any (not the last) parameter have a line comment * chore: add newline * chore: snapshot generation --------- Co-authored-by: Simon Schwedes <[email protected]>
1 parent 718f71d commit c5c56ff

File tree

3 files changed

+65
-2
lines changed

3 files changed

+65
-2
lines changed

src/printer.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1410,7 +1410,7 @@ function printFunction(path, options, print) {
14101410
const willBreakDeclaration = declaration.some(willBreak);
14111411

14121412
if (willBreakDeclaration) {
1413-
return [printedDeclaration, " ", printedBody];
1413+
return [...declAttrs, printedDeclaration, " ", printedBody];
14141414
}
14151415

14161416
return [

tests/attributes/__snapshots__/jsfmt.spec.mjs.snap

+42
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,28 @@ class Test
9090
}
9191
9292
}
93+
94+
class ParamCommentFunctionAnnotation {
95+
96+
#[Foo]
97+
function bar(
98+
int $a, // parameter comment
99+
int $b,
100+
) {
101+
return $a + $b;
102+
}
103+
104+
#[Foo]
105+
function bar2(
106+
int $a,
107+
int $middle, // parameter comment
108+
int $b,
109+
) {
110+
return $a + $middle + $b;
111+
}
112+
113+
}
114+
93115
=====================================output=====================================
94116
<?php
95117
@@ -206,5 +228,25 @@ class Test
206228
}
207229
}
208230
231+
class ParamCommentFunctionAnnotation
232+
{
233+
#[Foo]
234+
function bar(
235+
int $a, // parameter comment
236+
int $b
237+
) {
238+
return $a + $b;
239+
}
240+
241+
#[Foo]
242+
function bar2(
243+
int $a,
244+
int $middle, // parameter comment
245+
int $b
246+
) {
247+
return $a + $middle + $b;
248+
}
249+
}
250+
209251
================================================================================
210252
`;

tests/attributes/attributes.php

+22-1
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,25 @@ public function withAttribute(string $foo): string
8181
return $foo;
8282
}
8383

84-
}
84+
}
85+
86+
class ParamCommentFunctionAnnotation {
87+
88+
#[Foo]
89+
function bar(
90+
int $a, // parameter comment
91+
int $b,
92+
) {
93+
return $a + $b;
94+
}
95+
96+
#[Foo]
97+
function bar2(
98+
int $a,
99+
int $middle, // parameter comment
100+
int $b,
101+
) {
102+
return $a + $middle + $b;
103+
}
104+
105+
}

0 commit comments

Comments
 (0)