|
1 | 1 | import handleBlockComments from './handle-block-comments.js'; |
2 | 2 | import handleContractDefinitionComments from './handle-contract-definition-comments.js'; |
| 3 | +import handleContractSpecifiersComments from './handle-contract-specifiers-comments.js'; |
3 | 4 | import handleElseBranchComments from './handle-else-branch-comments.js'; |
4 | 5 | import handleIfStatementComments from './handle-if-statement-comments.js'; |
5 | 6 | import handleInterfaceDefinitionComments from './handle-interface-definition-comments.js'; |
6 | 7 | import handleLibraryDefinitionComments from './handle-library-definition-comments.js'; |
7 | 8 | import handleModifierInvocationComments from './handle-modifier-invocation-comments.js'; |
8 | 9 | import handleParametersDeclarationComments from './handle-parameters-declaration-comments.js'; |
9 | 10 | import handlePositionalArgumentsDeclarationComments from './handle-positional-arguments-declaration-comments.js'; |
| 11 | +import handleStorageLayoutSpecifierComments from './handle-storage-layout-specifier-comments.js'; |
10 | 12 | import handleWhileStatementComments from './handle-while-statement-comments.js'; |
11 | 13 | import handleYulBlockComments from './handle-yul-block-comments.js'; |
12 | 14 |
|
13 | 15 | export default [ |
14 | 16 | handleBlockComments, |
15 | 17 | handleContractDefinitionComments, |
| 18 | + handleContractSpecifiersComments, |
16 | 19 | handleElseBranchComments, |
17 | 20 | handleIfStatementComments, |
18 | 21 | handleInterfaceDefinitionComments, |
19 | 22 | handleLibraryDefinitionComments, |
20 | 23 | handleModifierInvocationComments, |
21 | 24 | handleParametersDeclarationComments, |
22 | 25 | handlePositionalArgumentsDeclarationComments, |
| 26 | + handleStorageLayoutSpecifierComments, |
23 | 27 | handleWhileStatementComments, |
24 | 28 | handleYulBlockComments |
25 | 29 | ]; |
0 commit comments