We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b16e7a1 commit 3f8e66cCopy full SHA for 3f8e66c
1 file changed
src/slang-nodes/AddressType.ts
@@ -17,6 +17,6 @@ export class AddressType extends SlangNode {
17
}
18
19
print(): Doc {
20
- return ['address', this.payableKeyword ? ' payable' : ''];
+ return `address${this.payableKeyword ? ' payable' : ''}`;
21
22
0 commit comments