prettier-plugin-solidity
Version:
A Prettier Plugin for automatically formatting your Solidity code.
12 lines • 366 B
JavaScript
import { NonterminalKind } from '@nomicfoundation/slang/cst';
import { SlangNode } from './SlangNode.js';
export class ThrowStatement extends SlangNode {
constructor(ast, collected) {
super(ast, collected);
this.kind = NonterminalKind.ThrowStatement;
}
print() {
return 'throw;';
}
}
//# sourceMappingURL=ThrowStatement.js.map