We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cee4c0e commit 6adc755Copy full SHA for 6adc755
1 file changed
src/slang-nodes/StateVariableAttributes.ts
@@ -27,8 +27,6 @@ export class StateVariableAttributes extends SlangNode {
27
}
28
29
print(path: AstPath<StateVariableAttributes>, print: PrintFunction): Doc {
30
- return this.items.length
31
- ? path.map((item) => [line, print(item)], 'items')
32
- : '';
+ return path.map((item) => [line, print(item)], 'items');
33
34
0 commit comments