-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathFunctionDefinition.ts
More file actions
81 lines (68 loc) · 2.48 KB
/
FunctionDefinition.ts
File metadata and controls
81 lines (68 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { NonterminalKind } from '@nomicfoundation/slang/cst';
import { satisfies } from 'semver';
import { printFunction } from '../slang-printers/print-function.js';
import { extractVariant } from '../slang-utils/extract-variant.js';
import { SlangNode } from './SlangNode.js';
import { FunctionName } from './FunctionName.js';
import { ParametersDeclaration } from './ParametersDeclaration.js';
import { FunctionAttributes } from './FunctionAttributes.js';
import { ReturnsDeclaration } from './ReturnsDeclaration.js';
import { FunctionBody } from './FunctionBody.js';
import type * as ast from '@nomicfoundation/slang/ast';
import type { Doc, ParserOptions } from 'prettier';
import type { CollectedMetadata, PrintFunction } from '../types.d.ts';
import type { PrintableNode } from './types.d.ts';
export class FunctionDefinition extends SlangNode {
readonly kind = NonterminalKind.FunctionDefinition;
name: FunctionName['variant'];
parameters: ParametersDeclaration;
attributes: FunctionAttributes;
returns?: ReturnsDeclaration;
body: FunctionBody['variant'];
constructor(
ast: ast.FunctionDefinition,
collected: CollectedMetadata,
options: ParserOptions<PrintableNode>
) {
super(ast, collected);
this.name = extractVariant(new FunctionName(ast.name, collected));
this.parameters = new ParametersDeclaration(
ast.parameters,
collected,
options
);
this.attributes = new FunctionAttributes(
ast.attributes,
collected,
options
);
if (ast.returns) {
this.returns = new ReturnsDeclaration(ast.returns, collected, options);
}
this.body = extractVariant(new FunctionBody(ast.body, collected, options));
this.updateMetadata(
this.name,
this.parameters,
this.attributes,
this.returns,
this.body
);
// Older versions of Solidity defined a constructor as a function having
// the same name as the contract.
// So we delegate to the parents the responsibility of cleaning the
// arguments of modifier invocations.
if (satisfies(options.compiler, '>=0.5.0')) {
this.cleanModifierInvocationArguments();
}
}
cleanModifierInvocationArguments(): void {
for (const attribute of this.attributes.items) {
if (attribute.kind === NonterminalKind.ModifierInvocation) {
attribute.cleanModifierInvocationArguments();
}
}
}
print(print: PrintFunction): Doc {
return printFunction(['function ', print('name')], this, print);
}
}