prettier-plugin-solidity
Advanced tools
Comparing version 1.0.0-alpha.58 to 1.0.0-alpha.59
{ | ||
"name": "prettier-plugin-solidity", | ||
"version": "1.0.0-alpha.58", | ||
"version": "1.0.0-alpha.59", | ||
"description": "prettier plugin for solidity", | ||
@@ -5,0 +5,0 @@ "main": "src", |
@@ -16,5 +16,13 @@ const { | ||
print: ({ node, path, print }) => | ||
concat(['event ', node.name, '(', parameters(node, path, print), ');']) | ||
concat([ | ||
'event ', | ||
node.name, | ||
'(', | ||
parameters(node, path, print), | ||
')', | ||
node.isAnonymous ? ' anonymous' : '', | ||
';' | ||
]) | ||
}; | ||
module.exports = EventDefinition; |
@@ -92,5 +92,5 @@ const { | ||
visibility(node), | ||
stateMutability(node), | ||
virtual(node), | ||
override(node, path, print), | ||
stateMutability(node), | ||
modifiers(node, path, print), | ||
@@ -97,0 +97,0 @@ returnParameters(node, path, print), |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
483667
3727