prettier-plugin-solidity
Version:
A Prettier Plugin for automatically formatting your Solidity code.
37 lines (28 loc) • 1.03 kB
text/typescript
import { NonterminalKind } from '@nomicfoundation/slang/cst';
import { SlangNode } from './SlangNode.js';
import { MappingKey } from './MappingKey.js';
import { MappingValue } from './MappingValue.js';
import type * as ast from '@nomicfoundation/slang/ast';
import type { AstPath, Doc, ParserOptions } from 'prettier';
import type { PrintFunction } from '../types.d.ts';
import type { AstNode } from './types.d.ts';
export class MappingType extends SlangNode {
readonly kind = NonterminalKind.MappingType;
keyType: MappingKey;
valueType: MappingValue;
constructor(ast: ast.MappingType, options: ParserOptions<AstNode>) {
super(ast);
this.keyType = new MappingKey(ast.keyType);
this.valueType = new MappingValue(ast.valueType, options);
this.updateMetadata(this.keyType, this.valueType);
}
print(path: AstPath<MappingType>, print: PrintFunction): Doc {
return [
'mapping(',
path.call(print, 'keyType'),
' => ',
path.call(print, 'valueType'),
')'
];
}
}