prettier-plugin-solidity
Version:
A Prettier Plugin for automatically formatting your Solidity code.
44 lines (37 loc) • 1.21 kB
text/typescript
import { NonterminalKind } from '@nomicfoundation/slang/cst';
import { util } from 'prettier';
import { locEnd } from '../../slang-utils/loc.js';
import addCollectionFirstComment from './add-collection-first-comment.js';
import type { HandlerParams } from './types.d.ts';
const { addTrailingComment } = util;
export default function handleModifierInvocationComments({
text,
precedingNode,
enclosingNode,
followingNode,
comment
}: HandlerParams): boolean {
if (enclosingNode?.kind !== NonterminalKind.ModifierInvocation) {
return false;
}
const nextCharacter = util.getNextNonSpaceNonCommentCharacter(
text,
locEnd(comment)
);
// The last comments before the body.
if (
precedingNode?.kind === NonterminalKind.IdentifierPath &&
nextCharacter === '(' &&
followingNode?.kind === NonterminalKind.ArgumentsDeclaration &&
followingNode.variant.kind ===
NonterminalKind.PositionalArgumentsDeclaration
) {
if (followingNode.variant.arguments.items.length === 0) {
addTrailingComment(enclosingNode, comment);
} else {
addCollectionFirstComment(followingNode.variant.arguments, comment);
}
return true;
}
return false;
}