prettier-plugin-solidity
Version:
A Prettier Plugin for automatically formatting your Solidity code.
46 lines (33 loc) • 1.32 kB
text/typescript
import { doc } from 'prettier';
import { NonterminalKind } from '@nomicfoundation/slang/cst';
import { getNodeMetadata, updateMetadata } from '../slang-utils/metadata.js';
import { YulExpression } from './YulExpression.js';
import { YulSwitchCases } from './YulSwitchCases.js';
import type * as ast from '@nomicfoundation/slang/ast';
import type { AstPath, Doc, ParserOptions } from 'prettier';
import type { AstNode } from './types.d.ts';
import type { PrintFunction, SlangNode } from '../types.d.ts';
const { hardline } = doc.builders;
export class YulSwitchStatement implements SlangNode {
readonly kind = NonterminalKind.YulSwitchStatement;
comments;
loc;
expression: YulExpression;
cases: YulSwitchCases;
constructor(ast: ast.YulSwitchStatement, options: ParserOptions<AstNode>) {
let metadata = getNodeMetadata(ast);
this.expression = new YulExpression(ast.expression, options);
this.cases = new YulSwitchCases(ast.cases, options);
metadata = updateMetadata(metadata, [this.expression, this.cases]);
this.comments = metadata.comments;
this.loc = metadata.loc;
}
print(path: AstPath<YulSwitchStatement>, print: PrintFunction): Doc {
return [
'switch ',
path.call(print, 'expression'),
hardline,
path.call(print, 'cases')
];
}
}